Advertisement
Guest User

Untitled

a guest
Aug 12th, 2022
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Thing {
  2. private Container myLocation
  3. init(Container = null) {
  4. myLocation = Container ?? new UndefinedContainer("Jest gdzieś lecz nie wiadomo gdzie...")
  5. }
  6.  
  7. moveTo(Container): void {
  8. myLocation = Container
  9. Container.append(this)
  10. }
  11.  
  12. location(): Container {
  13. return myLocation;
  14. }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement