Initial commit

This commit is contained in:
2023-08-27 14:32:38 +02:00
commit a9fcca4246
42 changed files with 4972 additions and 0 deletions

BIN
enemies/.DS_Store vendored Normal file

Binary file not shown.

9
enemies/basic.lua Normal file
View File

@@ -0,0 +1,9 @@
enemyBasic=enemy:extend()
function enemyBasic:new(x,y)
sounds=group("audio/enemies/1")
sounds.loop:setLooping(true)
enemyBasic.super.new(self,x,y,sounds)
sounds.loop:play()
end