overworld: add scene template
This commit is contained in:
parent
641e344663
commit
fd26548df6
1 changed files with 15 additions and 0 deletions
15
sonic-radiance.love/scenes/overworld/init.lua
Normal file
15
sonic-radiance.love/scenes/overworld/init.lua
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
local Scene = require "core.modules.scenes"
|
||||||
|
local OverWorld = Scene:extend()
|
||||||
|
|
||||||
|
function OverWorld:new()
|
||||||
|
OverWorld.super.new(self)
|
||||||
|
end
|
||||||
|
|
||||||
|
function OverWorld:update(dt)
|
||||||
|
end
|
||||||
|
|
||||||
|
function OverWorld:draw()
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
return OverWorld
|
Loading…
Reference in a new issue