diff options
| author | 1029chris <1029chris@gmail.com> | 2022-02-02 15:12:58 -0800 |
|---|---|---|
| committer | 1029chris <1029chris@gmail.com> | 2022-02-02 15:12:58 -0800 |
| commit | ab78a5fc2b109c4d028d1abd197fc1575d9d37ab (patch) | |
| tree | 9223c0ed805a991cda6a93ce62788989ebe602a4 /objects.lua | |
| parent | 2c30b81ec818341251929d11c59e77cfefc5c3e3 (diff) | |
Bullet collision stuff
Diffstat (limited to 'objects.lua')
| -rw-r--r-- | objects.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/objects.lua b/objects.lua index 2dba154..5284b03 100644 --- a/objects.lua +++ b/objects.lua @@ -1,9 +1,11 @@ obj = {} function updateobjs() + foreach(players, function(obj) obj:update() end) foreach(obj, function(obj) obj:update() end) end function drawobjs() + foreach(players, function(obj) obj:draw() end) foreach(obj, function(obj) obj:draw() end) end
\ No newline at end of file |
