diff options
| author | 1029chris <1029chris@gmail.com> | 2022-02-02 14:34:05 -0800 |
|---|---|---|
| committer | 1029chris <1029chris@gmail.com> | 2022-02-02 14:34:05 -0800 |
| commit | 2c30b81ec818341251929d11c59e77cfefc5c3e3 (patch) | |
| tree | 83c4159edd3072e904572c432a305818fdfcc559 /objects.lua | |
| parent | 29d9e7517dd77038df6f29f17e139b7ef68837ff (diff) | |
Added player controller and real basic bullets
Diffstat (limited to 'objects.lua')
| -rw-r--r-- | objects.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/objects.lua b/objects.lua new file mode 100644 index 0000000..2dba154 --- /dev/null +++ b/objects.lua @@ -0,0 +1,9 @@ +obj = {} + +function updateobjs() + foreach(obj, function(obj) obj:update() end) +end + +function drawobjs() + foreach(obj, function(obj) obj:draw() end) +end
\ No newline at end of file |
