2L4DL7PG5Q3IOZ2NTSULXDTDDA7AHNE43P7GH5TSVG2DZ4XC62NQC
AH744RFRNNEQ7THYLBD52BKUGPJJL36G5YLQY6NVU442UICAXUXQC
AVTNUQYRBW7IX2YQ3KDLVQ23RGW3BAKTAE7P73ASBYNKOHMQMH5AC
BLWAYPKV3MLDZ4ALXLUJ25AIR6PCIL4RFYNRYLB26GFVC2KQBYBAC
3QNOKBFMKBGXBVJIRHR2444JRRMBTABHE4674NR3DT67RRM2X6GAC
name_text = love.graphics.newText(love.graphics.getFont(), 'm') -- 1em
name_text = App.newText(love.graphics.getFont(), 'm') -- 1em
name_text = love.graphics.newText(love.graphics.getFont(), p.name)
name_text = App.newText(love.graphics.getFont(), p.name)
love.graphics.rectangle('fill', x,y, math.floor(name_text:getWidth()*Zoom), math.floor(15*Zoom))
love.graphics.rectangle('fill', x,y, math.floor(App.width(name_text)*Zoom), math.floor(15*Zoom))
endfunction App.width(text) return text.text:getWidth()
end
function App.width(text)
return text.text:getWidth()