This commit is contained in:
Kartik K. Agaram 2024-06-26 22:39:04 -07:00
parent 49b3b26ec7
commit 3c2185c9bf
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
-- some minor things I wish LÖVE provided
App = {}
App.screen = {}
App.screen = {} -- cache for screen dimensions
function App.color(color)
love.graphics.setColor(color.r, color.g, color.b, color.a)