ForceEnd() 공개 추상적인 메소드

Manual end of the game.
public abstract ForceEnd ( string param ) : void
param string
리턴 void
예제 #1
0
        /// <summary>
        /// Dispose and delete game out of List enabledGames.
        /// </summary>
        public static void Delete(Level l)
        {
            Game g = FindGame(l);

            if (g.IsInProgress())
            {
                g.ForceEnd(nullParameters);
            }
            enabledGames.Remove(g);
        }