First version

This commit is contained in:
2022-04-11 18:34:26 +03:00
committed by GitHub
parent d68a4f0da7
commit 37e6bd6a28
32 changed files with 824 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
function game.bonus.load()
bonus = {}
bonus.texture = {}
bonus.types = 5
bonus.textures = {}
bonus.textures.lvlUp = love.graphics.newImage("textures/bonus/lvlUp.png")
bonus.textures.laser = love.graphics.newImage("textures/bonus/laser.png")
bonus.textures.plasma = love.graphics.newImage("textures/bonus/plasma.png")
bonus.textures.health = love.graphics.newImage("textures/bonus/health.png")
bonus.textures.life = love.graphics.newImage("textures/bonus/life.png")
end