mirror of
https://github.com/usysrc/LICK.git
synced 2025-01-21 18:24:23 +00:00
10 lines
206 B
Lua
10 lines
206 B
Lua
|
local lg = love.graphics
|
||
|
|
||
|
local divider = {}
|
||
|
local width = 16
|
||
|
divider.draw = function()
|
||
|
lg.setColor(1,1,1)
|
||
|
lg.rectangle("fill", lg.getWidth()/2-width/2, 0, width, lg.getHeight())
|
||
|
end
|
||
|
|
||
|
return divider
|