require "player"
require "camera"
splashy = require "\lib\splashy\init"
function love.load()
player.load()
splashy.drawn = 0
electroSplash = love.graphics.newImage("\imgs\splash\electroSplash.png")
end
function love.update(dt)
splashy.update(dt)
end
function love.draw()
splashy.draw()
--draw splash screen
splashy.addSplash(electroSplash)
end
Lua strings cannot contain just "\" it has to be "\\".
Also, require works with "." instead of "\" or "/".
Lastly "\" is a Windows convention, for file paths we use "/"