summaryrefslogtreecommitdiff
path: root/examples/platformer/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'examples/platformer/main.lua')
-rw-r--r--examples/platformer/main.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/platformer/main.lua b/examples/platformer/main.lua
index e325fbd..8fc33d8 100644
--- a/examples/platformer/main.lua
+++ b/examples/platformer/main.lua
@@ -1,7 +1,7 @@
package.path = package.path..";"..RL_GetBasePath().."../resources/lib/?.lua"
-util = require "utillib"
-Vec2 = require "vector2"
+util = require( "utillib" )
+Vec2 = require( "vector2" )
local TILE_SIZE = 16
local PLAYER_MAXSPEED = 1.5