Files
rebirth-wren/layerType.wren
Indrajith K L b73889da9f Basic Renderer
* Adds Tiled map JSON rendering
* TODO Cleanup & Organization
2021-08-01 02:26:00 +05:30

5 lines
99 B
Plaintext

// ENUM lol
class LayerType {
static Tile { "tilelayer" }
static Object { "objectgroup" }
}