diff options
Diffstat (limited to 'entities/player.lua')
-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 |