diff options
author | Indrajith K L | 2021-08-03 17:53:10 +0530 |
---|---|---|
committer | Indrajith K L | 2021-08-03 17:53:10 +0530 |
commit | 705886d371cf2cfa619b321c0d87caca0773a789 (patch) | |
tree | 0e860ca10c6cfd122b403b02e84d4fef72078b63 /layer_type.wren | |
parent | 5bd12d5a658c1cd710bc950be971ebe3993ed11d (diff) | |
download | rebirth-wren-705886d371cf2cfa619b321c0d87caca0773a789.tar.gz rebirth-wren-705886d371cf2cfa619b321c0d87caca0773a789.tar.bz2 rebirth-wren-705886d371cf2cfa619b321c0d87caca0773a789.zip |
Bug Fixes
Player Placement
Basic Player Movement
Diffstat (limited to 'layer_type.wren')
-rw-r--r-- | layer_type.wren | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/layer_type.wren b/layer_type.wren index cee6b82..fb1f5c5 100644 --- a/layer_type.wren +++ b/layer_type.wren @@ -2,4 +2,10 @@ class LayerType { static Tile { "tilelayer" } static Object { "objectgroup" } +} + +class ObjectType { + static PLAYER { "player" } + static NPC { "npc" } + static ENEMY { "enemy" } }
\ No newline at end of file |