diff options
Diffstat (limited to 'elements.lua')
| -rw-r--r-- | elements.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/elements.lua b/elements.lua index 1471e3e..ef75a54 100644 --- a/elements.lua +++ b/elements.lua @@ -29,6 +29,7 @@ function drawUpBox(x, y, w, h, t) love.graphics.line(x, y+h, x, y, x+w, y) love.graphics.setColor(colors.win.dark) love.graphics.line(x, y+h, x+w, y+h, x+w, y) + love.graphics.setColor(255,255,255) end function drawDownBox(x, y, w, h, t) love.graphics.setColor(colors.win.normal) @@ -38,6 +39,7 @@ function drawDownBox(x, y, w, h, t) love.graphics.line(x, y+h, x, y, x+w, y) love.graphics.setColor(colors.win.light) love.graphics.line(x, y+h, x+w, y+h, x+w, y) + love.graphics.setColor(255,255,255) end function drawBlueBox(x, y, w, h, t) love.graphics.setColor(0, 0, 120) @@ -47,6 +49,7 @@ function drawBlueBox(x, y, w, h, t) love.graphics.line(x, y+h, x, y, x+w, y) love.graphics.setColor(0, 0, 80) love.graphics.line(x, y+h, x+w, y+h, x+w, y) + love.graphics.setColor(255,255,255) end function drawBubble(x,y,w,h,m) love.graphics.setColor(255,255,255) |
