From 62ff5245c26c305e35a2903cc64a60cb20718e96 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sun, 27 Feb 2022 01:15:31 +0530 Subject: Initial Commit * ECS - In-Progress * GameStates - Skeleton Implemented * Library Integrations - Completed * Levels - In-Progress --- entities/player.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 entities/player.lua (limited to 'entities/player.lua') 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 -- cgit v1.2.3