File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ function sceneman:newscene(base)
9
9
scene .loaded = false
10
10
scene .started = false
11
11
12
- function scene : load () end
13
- function scene : start () end
14
- function scene : update () end
15
- function scene : draw () end
16
- function scene : tofront () end
17
- function scene : toback () end
18
- function scene : stop (... ) end
19
- function scene : quit (... ) end
12
+ scene . load = scene . load or function () end
13
+ scene . start = scene . start or function () end
14
+ scene . update = scene . update or function () end
15
+ scene . draw = scene . draw or function () end
16
+ scene . tofront = scene . tofront or function () end
17
+ scene . toback = scene . toback or function () end
18
+ scene . stop = scene . stop or function ( ) end
19
+ scene . quit = scene . quit or function ( ) end
20
20
21
21
function scene :isloaded ()
22
22
return self .loaded
You can’t perform that action at this time.
0 commit comments