aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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