🚚 Move include files to subdirectory
This commit is contained in:
parent
fd508d9ab0
commit
8a6446617d
7 changed files with 4 additions and 4 deletions
30
includes/Classes.inf
Normal file
30
includes/Classes.inf
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
Class Room
|
||||
with add_to_scope [;
|
||||
AddToScope(computer);
|
||||
PlaceInScope(computer);
|
||||
AddToScope(lights);
|
||||
PlaceInScope(lights);
|
||||
],
|
||||
has light;
|
||||
|
||||
! Class Set
|
||||
! with before [;
|
||||
! Examine: return false;
|
||||
! default: print_ret "You can't do that with ", (the) self, ".";
|
||||
! ],
|
||||
! has scenery;
|
||||
|
||||
Class Decoration
|
||||
with before [;
|
||||
Take,Pull,Push,PushDir:
|
||||
print_ret "You can't do that with ", (the) self, ".";
|
||||
],
|
||||
has static;
|
||||
|
||||
! Class Furniture
|
||||
! class Decoration,
|
||||
! with before [;
|
||||
! Take,Pull,Push,PushDir:
|
||||
! print_ret (the) self, " is too heavy for that.";
|
||||
! ],
|
||||
! has supporter;
|
||||
Loading…
Add table
Add a link
Reference in a new issue