Pop.Box/main.lua
Paul Liverman III 486f307274 init crap
2015-11-17 19:27:06 -08:00

19 lines
384 B
Lua

local pop = require "pop"
function love.load()
pop.box() -- returns the box element
-- 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