mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Move "first-party" scripts into TEN folder.
This commit is contained in:
parent
f145c5dec5
commit
0a8a2ec5ba
6 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue