mirror of
https://github.com/TangentFoxy/Pop.Box.git
synced 2024-12-15 12:44:20 +00:00
14 lines
169 B
Lua
14 lines
169 B
Lua
local graphics
|
|
graphics = love.graphics
|
|
return {
|
|
color = {
|
|
255,
|
|
255,
|
|
255,
|
|
255
|
|
},
|
|
background = false,
|
|
font = graphics.newFont(13),
|
|
margin = 2
|
|
}
|