From b12aafee92b40a16b61d30839beb8b68188659ea Mon Sep 17 00:00:00 2001 From: 1029chris <1029chris@gmail.com> Date: Wed, 11 May 2016 13:36:33 -0700 Subject: Many different tweaks Added files gui Tweaked fight Added code for window shadow (but it isnt enabled) --- files.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'files.lua') diff --git a/files.lua b/files.lua index 63cb926..f31bf34 100644 --- a/files.lua +++ b/files.lua @@ -1,2 +1,13 @@ function drawFiles() + drawDownBox(8, 74, win[3].w-17, win[3].h-108, 4) + drawDownBox(8, 31, win[3].w-17, 34, 4) + drawDownBox(7, 374, win[3].w-15, 18, 2) + love.graphics.setColor(250, 250, 250) + love.graphics.rectangle("fill", 8, 74, win[3].w-17, win[3].h-108) + love.graphics.rectangle("fill", 8, 31, win[3].w-17, 34) + drawUpBox(9, 32, 38, 32, 2) + love.graphics.setColor(255, 255, 255) + love.graphics.draw(internet.back, 11, 32) + love.graphics.setColor(colors.font.dark) + love.graphics.print("/User/", 70, 44) end -- cgit