]> Untitled Git - lightcycles-love.git/blobdiff - main.lua
Increased player speed
[lightcycles-love.git] / main.lua
index 804c413d7249eaf9e63139610690bfa4b9056812..a0d0ca720923f8ec71259c9fa99719cc6b59c3d4 100644 (file)
--- a/main.lua
+++ b/main.lua
@@ -1,37 +1,23 @@
 -- main
 
 -- main
 
-require 'player'
+require 'scene'
 
 function love.load()
 
 function love.load()
-    player = Player:new({position={x=100, y=100}})
+    scene:load()
 end
 
 function love.draw()
 end
 
 function love.draw()
-    -- set bg
-    local bgcolor = {0.2, 0.2, 0.5}
-    love.graphics.setBackgroundColor(bgcolor)
-
-    -- draw basic grid
-    love.graphics.setColor(0.3, 0.3, 0.6)
-    local width = love.graphics.getWidth()
-    local height = love.graphics.getHeight()
-    local delta = 50
-
-    for x=0,width,delta do
-        love.graphics.line(x, 0, x, height)
-    end
-
-    for y=0,height,delta do
-        love.graphics.line(0, y, width, y)
-    end
-
-    -- misc
-    player:draw()
+    scene:draw()
 end
 
 function love.update(dt)
     if love.keyboard.isDown('escape') then
         love.event.quit()
     end
 end
 
 function love.update(dt)
     if love.keyboard.isDown('escape') then
         love.event.quit()
     end
-    player:update(dt)
+    scene:update(dt)
+end
+
+function love.quit()
+    print('Thanks for playing!')
+    scene:quit()
 end
 end