diff options
Diffstat (limited to 'src/world.rhm')
-rw-r--r-- | src/world.rhm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/world.rhm b/src/world.rhm new file mode 100644 index 0000000..9357422 --- /dev/null +++ b/src/world.rhm @@ -0,0 +1,26 @@ +#lang rhombus/static +import: + "chunk.rhm" open + "entity.rhm" open + "item.rhm" open + +export: + Chunk + ActionResponse + Direction + World + Tile + Entity + EntityPlayer + EntityGatherable + Direction + ItemCap + Item + Slot + +class World(chunks :: MutableList.now_of(Chunk), + entities :: MutableList.now_of(Entity)): + + constructor(): + super(MutableList(), MutableList()) + |