Example #1
0
        /// <summary>Overridden from <see cref="Engine.EntitySystem.Entity.OnDestroy()"/>.</summary>
        protected override void OnDestroy()
        {
            base.OnDestroy();

            if( instance == this )//for undo support
                instance = null;
        }
Example #2
0
 public RTSFactionManager()
 {
     if (instance != null)
     {
         Log.Fatal("RTSFactionManager: instance != null");
     }
     instance = this;
 }
Example #3
0
        /// <summary>Overridden from <see cref="Engine.EntitySystem.Entity.OnPostCreate(Boolean)"/>.</summary>
        protected override void OnPostCreate(bool loaded)
        {
            if (instance == this)             //for undo support
            {
                instance = this;
            }

            base.OnPostCreate(loaded);
        }
Example #4
0
        /// <summary>Overridden from <see cref="Engine.EntitySystem.Entity.OnDestroy()"/>.</summary>
        protected override void OnDestroy()
        {
            base.OnDestroy();

            if (instance == this)             //for undo support
            {
                instance = null;
            }
        }
Example #5
0
        /// <summary>Overridden from <see cref="Engine.EntitySystem.Entity.OnPostCreate(Boolean)"/>.</summary>
        protected override void OnPostCreate( bool loaded )
        {
            if( instance == this )//for undo support
                instance = this;

            base.OnPostCreate( loaded );
        }
Example #6
0
 public RTSFactionManager()
 {
     if( instance != null )
         Log.Fatal( "RTSFactionManager: instance != null" );
     instance = this;
 }