diff options
Diffstat (limited to 'app.lua')
-rw-r--r-- | app.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app.lua b/app.lua index e5be2b0..56b9dba 100644 --- a/app.lua +++ b/app.lua @@ -157,6 +157,10 @@ function App.screen.print(msg, x,y) end end +function App.color(color) + love.graphics.setColor(color.r, color.g, color.b, color.a) +end + App.time = 1 function App.getTime() return App.time |