About Social Code
summaryrefslogtreecommitdiff
path: root/src/world.rhm
blob: 9357422f5a2b862c1729d3f6cb38e32483e2efb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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())