blob: 0ef41c75a9c43c4ccbd5670202dd6570c9ff8cd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local Scene = Class()
AsuraEngine.Scene = Scene
function Scene.Ctor(self)
self.entities = {} --当前场景的所有entity
end
--获取当前的场景
function Scene.GetCurrent()
end
return Scene
|