Move "first-party" scripts into TEN folder.

This commit is contained in:
hispidence 2022-09-03 12:25:05 +01:00
parent f145c5dec5
commit 0a8a2ec5ba
6 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
-- Test level script file
local Util = require("Util")
local Util = require("TEN.Util")
Util.ShortenTENCalls()
-- Called when entering a level, not called when loading from a save

View file

@ -1,10 +1,10 @@
-- Title script file
local Util = require("Util")
local Util = require("TEN.Util")
Util.ShortenTENCalls()
LevelFuncs.OnLoad = function() end
LevelFuncs.OnSave = function() end
LevelFuncs.OnEnd = function() end
LevelFuncs.OnControlPhase = function() end
LevelFuncs.OnStart = function() end
LevelFuncs.OnControlPhase = function(dt) end