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

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