aboutsummaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
authorChris B <1029chris@gmail.com>2016-01-13 13:26:02 -0800
committerChris B <1029chris@gmail.com>2016-01-13 13:26:02 -0800
commitb94772fccb169d00cca6e478c6924d4bf2b33b6e (patch)
tree6931e254d4ee9a5b20c93a66cff064a4cbc0c340 /main.lua
parentc0c5d0d925f9132fd3735735ebf39c6a75267f84 (diff)
Start menu, color fix
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.lua b/main.lua
index 4f57d2c..c1f7f76 100644
--- a/main.lua
+++ b/main.lua
@@ -46,6 +46,8 @@ function love.load()
win[1].s = 1
win[1].min = false
win[1].miny = 0
+ start = {}
+ start.cvs = love.graphics.newCanvas(250, 350)
end
function love.update(dt)
sys.mouse.x = love.mouse.getX()
@@ -85,4 +87,5 @@ function love.draw()
--if test == true then
-- love.graphics.print("IT WORKS " .. sys.mouse.p.x, 100, 100)
--end
+ drawMenu()
end