This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- tutorial #2 | |
-- added enemys, shooting, background etc. | |
function love.load() | |
bg = love.graphics.newImage("bg.png") | |
hero = {} -- new table for the hero | |
hero.x = 300 -- x,y coordinates of the hero | |
hero.y = 450 | |
hero.width = 30 |
NewerOlder