mirror of
https://github.com/TangentFoxy/Pop.Box.git
synced 2024-12-15 12:44:20 +00:00
6255f30fa6
- inheritsFromElement improved - fixed a couple bugs in element - added inspect library
11 lines
219 B
Lua
11 lines
219 B
Lua
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
|