Files
rebirth-wren/layer_type.wren
2021-08-03 23:06:26 +05:30

12 lines
241 B
Plaintext

// ENUM lol
class LayerType {
static Tile { "tilelayer" }
static Object { "objectgroup" }
}
class ObjectType {
static PLAYER { "player" }
static NPC { "npc" }
static ENEMY { "enemy" }
static COLLIDER { "collider" }
}