diff options
author | Indrajith K L | 2022-02-27 01:15:31 +0530 |
---|---|---|
committer | Indrajith K L | 2022-02-27 01:15:31 +0530 |
commit | 62ff5245c26c305e35a2903cc64a60cb20718e96 (patch) | |
tree | 9042f9917e77b584b0ceb421166221ef7777a5d1 /entities | |
download | YEAD-62ff5245c26c305e35a2903cc64a60cb20718e96.tar.gz YEAD-62ff5245c26c305e35a2903cc64a60cb20718e96.tar.bz2 YEAD-62ff5245c26c305e35a2903cc64a60cb20718e96.zip |
Initial Commit
* ECS - In-Progress
* GameStates - Skeleton Implemented
* Library Integrations - Completed
* Levels - In-Progress
Diffstat (limited to 'entities')
-rw-r--r-- | entities/player.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/entities/player.lua b/entities/player.lua new file mode 100644 index 0000000..cfb3d15 --- /dev/null +++ b/entities/player.lua @@ -0,0 +1,9 @@ +local Class = require("libs.hump.class"); + +Player = Class{ + init = function(self) + print("Player Init") + end +} + +return Player
\ No newline at end of file |