diff options
author | Indrajith K L | 2022-03-02 03:36:05 +0530 |
---|---|---|
committer | Indrajith K L | 2022-03-02 03:36:05 +0530 |
commit | 6322712259d46fc7af82ae6271852a236f66ba6e (patch) | |
tree | 3b38362efa04e97cae6ee934242705fbd5f947c8 /entities/player.lua | |
parent | 384dda3616c7007da1c88a67ff2daebd6037baa7 (diff) | |
download | YEAD-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.lua | 2 |
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 } |