forked from pharo-graphics/Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed MgdGameModel>>#initializeForSymbols:
- Loading branch information
Showing
6 changed files
with
26 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/Bloc-MemoryGame.package/MgRawCardElement.class/instance/drawBacksideOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
drawing | ||
drawBacksideOn: aCanvas | ||
|
||
aCanvas stroke | ||
paint: Color paleBlue; | ||
path: (aCanvas shape line: 0@0 to: self extent); | ||
draw. | ||
|
||
aCanvas stroke | ||
paint: Color paleBlue; | ||
path: (aCanvas shape line: self width @ 0 to: 0@self height); | ||
draw |
16 changes: 0 additions & 16 deletions
16
src/Bloc-MemoryGame.package/MgRawCardElement.class/instance/drawBacksideOnSpartaCanvas..st
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
src/Bloc-MemoryGame.package/MgRawCardElement.class/instance/drawCommonOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
drawing | ||
drawCommonOn: aCanvas | ||
aCanvas fill | ||
paint: self backgroundPaint; | ||
path: self boundsInLocal; | ||
draw |
2 changes: 1 addition & 1 deletion
2
...nstance/drawFlippedSideOnSpartaCanvas..st → ...ment.class/instance/drawFlippedSideOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters