Skip to content

Commit

Permalink
initial commit, created category, testing git
Browse files Browse the repository at this point in the history
  • Loading branch information
RedToxyl committed May 19, 2024
1 parent 3e8ce49 commit 7c4f084
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 53 deletions.
112 changes: 59 additions & 53 deletions .squot-materialize
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[
SquotSoundMapper {
SquotPlaintextMapper {
#path : FSAbsolutePath [
'testingResources',
'squeak.wav'
'.squot'
],
#encoding : 'WAV'
#encoding : 'TXT'
},
SquotPlaintextMapper {
SquotSoundMapper {
#path : FSAbsolutePath [
'LICENSE'
'testingResources',
'squeak.aiff'
],
#encoding : 'TXT'
#encoding : 'AIFF'
},
SquotImageMapper {
#path : FSAbsolutePath [
Expand All @@ -19,128 +19,134 @@
],
#encoding : Class [ #GIFReadWriter ]
},
SquotCypressMapper {
#package : MCPackage {
#name : 'GM-Utilities'
},
SquotPlaintextMapper {
#path : FSAbsolutePath [
'source'
]
'README.md'
],
#encoding : 'TXT'
},
SquotPlaintextMapper {
#path : FSAbsolutePath [
'testingResources',
'test.txt'
'.github',
'workflows',
'main.yml'
],
#encoding : 'TXT'
},
SquotImageMapper {
SquotSoundMapper {
#path : FSAbsolutePath [
'testingResources',
'squeak.png'
'squeak.wav'
],
#encoding : Class [ #PNGReadWriter ]
#encoding : 'WAV'
},
SquotPlaintextMapper {
#path : FSAbsolutePath [
'.smalltalk.ston'
],
#encoding : 'TXT'
},
SquotCypressMapper {
#package : MCPackage {
#name : 'BaselineOfGM'
#name : 'GM-AcceptanceTest'
},
#path : FSAbsolutePath [
'source'
]
},
SquotCypressMapper {
#package : MCPackage {
#name : 'GM-AcceptanceTest'
#name : 'GM-Utilities'
},
#path : FSAbsolutePath [
'source'
]
},
SquotPlaintextMapper {
SquotCypressMapper {
#package : MCPackage {
#name : 'GM-DemoGame'
},
#path : FSAbsolutePath [
'testingResources',
'test'
],
#encoding : 'TXT'
'source'
]
},
SquotCypressMapper {
#package : MCPackage {
#name : 'GM-Core'
#name : 'GM-TestFixtures'
},
#path : FSAbsolutePath [
'source'
]
},
SquotPlaintextMapper {
#path : FSAbsolutePath [
'.gitignore'
'testingResources',
'test'
],
#encoding : 'TXT'
},
SquotPlaintextMapper {
SquotCypressMapper {
#package : MCPackage {
#name : 'GM-UtilitiesTest'
},
#path : FSAbsolutePath [
'.squot'
'source'
]
},
SquotImageMapper {
#path : FSAbsolutePath [
'testingResources',
'squeak.png'
],
#encoding : 'TXT'
#encoding : Class [ #PNGReadWriter ]
},
SquotPlaintextMapper {
#path : FSAbsolutePath [
'.smalltalk.ston'
'.gitignore'
],
#encoding : 'TXT'
},
SquotCypressMapper {
SquotTonelMapper {
#package : MCPackage {
#name : 'GM-TestFixtures'
#name : 'GM-TilemapMaker'
},
#path : FSAbsolutePath [
'source'
]
},
SquotSoundMapper {
#path : FSAbsolutePath [
'testingResources',
'squeak.aiff'
],
#encoding : 'AIFF'
},
SquotCypressMapper {
#package : MCPackage {
#name : 'GM-DemoGame'
#name : 'GM-Core'
},
#path : FSAbsolutePath [
'source'
]
},
SquotPlaintextMapper {
#path : FSAbsolutePath [
'README.md'
'LICENSE'
],
#encoding : 'TXT'
},
SquotCypressMapper {
#package : MCPackage {
#name : 'GM-UtilitiesTest'
#name : 'BaselineOfGM'
},
#path : FSAbsolutePath [
'source'
]
},
SquotPlaintextMapper {
#path : FSAbsolutePath [
'.github',
'workflows',
'main.yml'
],
#encoding : 'TXT'
},
SquotCypressMapper {
#package : MCPackage {
#name : 'GM-Test'
},
#path : @41
},
SquotPlaintextMapper {
#path : FSAbsolutePath [
'source'
]
'testingResources',
'test.txt'
],
#encoding : 'TXT'
}
]
14 changes: 14 additions & 0 deletions source/GM-TilemapMaker/Tile.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Class {
#name : #Tile,
#superclass : #ImageMorph,
#category : #'GM-TilemapMaker'
}

{
#category : #'as yet unclassified',
#'squeak_changestamp' : 'TW 5/17/2024 16:08'
}
Tile >> isTile [

^true
]
4 changes: 4 additions & 0 deletions source/GM-TilemapMaker/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Package {
#'squeak_changestamp' : true,
#name : #'GM-TilemapMaker'
}

0 comments on commit 7c4f084

Please sign in to comment.