2015-11-20 11:30:40 +00:00
|
|
|
local pop = require "pop" --TODO tell user that pop must be required with SLASHES
|
2015-11-18 03:27:06 +00:00
|
|
|
|
|
|
|
function love.load()
|
2015-11-30 19:55:52 +00:00
|
|
|
pop.box() -- returns the box element
|
2015-11-18 03:27:06 +00:00
|
|
|
-- or pop.create("box") (this is what is actually called when you call pop.box())
|
|
|
|
end
|
|
|
|
|
|
|
|
function love.draw()
|
|
|
|
pop.draw()
|
|
|
|
end
|
|
|
|
|
|
|
|
function love.mousepressed(button, x, y)
|
|
|
|
pop.mousepressed(button, x, y)
|
|
|
|
end
|
|
|
|
|
|
|
|
function love.mousereleased(button, x, y)
|
|
|
|
pop.mousereleased(button, x, y)
|
|
|
|
end
|
2015-11-20 11:30:40 +00:00
|
|
|
|
|
|
|
function love.keypressed(key)
|
2015-11-30 19:55:52 +00:00
|
|
|
if key == "escape" then
|
|
|
|
love.event.quit()
|
2015-11-20 11:30:40 +00:00
|
|
|
end
|
|
|
|
end
|