aboutsummaryrefslogtreecommitdiff
path: root/layer_type.wren
blob: fb1f5c588b90c4d2959be8436821ab08acab00f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
// ENUM lol
class LayerType {
    static Tile { "tilelayer" }
    static Object { "objectgroup" }
}

class ObjectType {
    static PLAYER { "player" }
    static NPC { "npc" }
    static ENEMY { "enemy" }
}