aboutsummaryrefslogtreecommitdiff
path: root/entities/player.lua
diff options
context:
space:
mode:
authorIndrajith K L2022-03-02 03:36:05 +0530
committerIndrajith K L2022-03-02 03:36:05 +0530
commit6322712259d46fc7af82ae6271852a236f66ba6e (patch)
tree3b38362efa04e97cae6ee934242705fbd5f947c8 /entities/player.lua
parent384dda3616c7007da1c88a67ff2daebd6037baa7 (diff)
downloadYEAD-6322712259d46fc7af82ae6271852a236f66ba6e.tar.gz
YEAD-6322712259d46fc7af82ae6271852a236f66ba6e.tar.bz2
YEAD-6322712259d46fc7af82ae6271852a236f66ba6e.zip
* Test Enemy Added
* Basic Hacky Enemy AI
Diffstat (limited to 'entities/player.lua')
-rw-r--r--entities/player.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/entities/player.lua b/entities/player.lua
index 0afdfd0..8017681 100644
--- a/entities/player.lua
+++ b/entities/player.lua
@@ -1,7 +1,7 @@
local Class = require("libs.hump.class");
Player = Class{
- init = function(self)
+ init = function(self, x, y)
end
}