blob: 838b9df00f0eeecd24d2aa453cc52fcace8b8280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#lang rhombus/static
import:
"chunk.rhm" open
"entity.rhm" open
export:
Chunk
ActionResponse
Direction
World
Tile
Entity
EntityPlayer
EntityGatherable
Direction
class World(chunks :: MutableList.now_of(Chunk),
entities :: MutableList.now_of(Entity)):
constructor():
super(MutableList(), MutableList())
|