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
+7
View File
@@ -0,0 +1,7 @@
-----Отрисовка Бонусов-----
function game.bonus.draw()
for i,v in ipairs(bonus) do
love.graphics.setColor(255, 255, 255, 255)
love.graphics.draw(v.texture, v.x-25, v.y-25)
end
end