aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris B <1029chris@Chriss-MacBook-Pro.local>2016-02-10 13:31:48 -0800
committerChris B <1029chris@Chriss-MacBook-Pro.local>2016-02-10 13:31:48 -0800
commit91a81dff3b89a257e6dc736edc11ab84c3fd624d (patch)
tree96e28f6a39a3f922803fca5e4539a57efc07e99f
parent71a811a0019d590922ee20ba0f083cec5b3b15c8 (diff)
Started to implement background
-rw-r--r--desktop.lua1
-rw-r--r--main.lua1
-rw-r--r--var.lua2
3 files changed, 4 insertions, 0 deletions
diff --git a/desktop.lua b/desktop.lua
index 0afcbf0..52350da 100644
--- a/desktop.lua
+++ b/desktop.lua
@@ -1,2 +1,3 @@
function drawDesktop()
+
end
diff --git a/main.lua b/main.lua
index f42d404..fb09bfd 100644
--- a/main.lua
+++ b/main.lua
@@ -39,6 +39,7 @@ function love.mousereleased(x, y, button)
start.p = false
end
function love.draw()
+ drawDesktop()
if win[1].ex == true and win[1].s == 0 then
win[1].layer = 0
win[1].panel = 0
diff --git a/var.lua b/var.lua
index 1ea2565..20ea1b9 100644
--- a/var.lua
+++ b/var.lua
@@ -82,4 +82,6 @@ function loadVar()
layer = {}
layer[1] = 0
layer[2] = 0
+ desktop = {}
+ desktop.bg = {}
end