Pop.Box/main.lua

11 lines
219 B
Lua
Raw Normal View History

2016-08-21 05:29:16 +00:00
local pop = require("")
pop.text("Hello World!"):align("center", "center")
love.draw = function()
return pop.draw()
end
love.keypressed = function(key)
if key == "escape" then
return love.event.quit()
end
end