erdos/src/draw/font.lua

17 lines
254 B
Lua
Raw Normal View History

2022-02-16 18:53:37 +00:00
return function(draw)
function draw:font(f)
if f then self.f = f end
return self
end
function draw:newFont(...)
return self:font(love.graphics.newFont(...))
end
function draw:getFText(t)
return self.f:getWidth(t), self.f:getHeight(t)
end
end