예제 #1
0
파일: GameMap.cs 프로젝트: whztt07/SDK
 public GameMap()
 {
     instance = this;
 }
예제 #2
0
 public GameMap()
 {
     instance = this;
 }
예제 #3
0
파일: GameMap.cs 프로젝트: whztt07/SDK
        /// <summary>Overridden from <see cref="Engine.EntitySystem.Entity.OnDestroy()"/>.</summary>
        protected override void OnDestroy()
        {
            PhysicsWorld.Instance.MainScene.PostStep -= MainPhysicsScene_PostStep;

            base.OnDestroy();
            instance = null;
        }