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