| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- namespace Model
- {
- public enum SceneType
- {
- Share,
- Game,
- Login,
- Lobby,
- Map,
- Launcher,
- Robot,
- BehaviorTreeScene,
- RobotClient,
- Realm
- }
-
- public sealed class Scene: Entity
- {
- public Scene Parent { get; set; }
- public string Name { get; set; }
- public SceneType SceneType { get; private set; }
- public Scene()
- {
- }
- public Scene(long id): base(id)
- {
- }
- public override void Dispose()
- {
- if (this.Id == 0)
- {
- return;
- }
- base.Dispose();
- }
- }
- }
|