diff options
| author | 1029chris <1029chris@gmail.com> | 2016-04-09 21:14:49 -0700 |
|---|---|---|
| committer | 1029chris <1029chris@gmail.com> | 2016-04-09 21:14:49 -0700 |
| commit | f56dd94334559d026922cd1ef81e1a6a506d239a (patch) | |
| tree | dba239e8a99cec84cd8f86e5350a00c11579644a /window.lua | |
| parent | b6b0f050d75e22af5eb53d2c1d058a40e0ff1e6b (diff) | |
Added settings menu
Added option to change backgrounds
Diffstat (limited to 'window.lua')
| -rw-r--r-- | window.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -20,6 +20,8 @@ function drawWindow(id) drawChat() elseif id == 2 then drawInternet() + elseif id == 6 then + drawSettings() end love.graphics.setCanvas() win[id].update = false @@ -125,6 +127,8 @@ function drawWindow(id) updateChat() elseif id == 2 then updateInternet() + elseif id == 6 then + updateSettings() end if id == layer[1] and win[id].bar == "grey" then win[id].bar = "active" |
