Run() 공개 메소드

public Run ( bool active ) : void
active bool
리턴 void
예제 #1
0
        static void Main(string[] args)
        {
            try
            {
                StartGame.Run();
            }

            catch (Exception e)
            {
                Console.WriteLine(e);
            }
            finally
            {
                //ProgramExit();
            }
        }
예제 #2
0
 static void Main()
 {
     StartGame.Run();
 }
예제 #3
0
        public static void Main(string[] args)
        {
            var startGame = new StartGame();

            startGame.Run();
        }