예제 #1
0
파일: GameOverCmd.cs 프로젝트: 7474/SRC
        protected override int ExecInternal()
        {
            if (ArgNum != 1)
            {
                throw new EventErrorException(this, "GameOverコマンドの引数の数が違います");
            }

            SRC.GameOver();
            SRC.IsScenarioFinished = true;
            return(-1);
        }