-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ivo Zilkenat
committed
May 19, 2024
1 parent
1f30d86
commit 4e215a4
Showing
2 changed files
with
81 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
Class { | ||
#name : #GMTETile, | ||
#superclass : #GMTEImageMorph, | ||
#superclass : #Morph, | ||
#category : #'GM-TE-Core' | ||
} | ||
|
||
{ | ||
#category : #'as yet unclassified', | ||
#'squeak_changestamp' : 'Ivo Zilkenat 5/19/2024 16:45' | ||
} | ||
GMTETile class >> x: x y: y width: aWidth height: aHeight [ | ||
"comment stating purpose of message" | ||
|
||
^ self new | ||
extent: aWidth @ aHeight; | ||
position: x @ y | ||
] |
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