예제 #1
0
파일: Program.cs 프로젝트: demonixis/amlost
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        static void Main(string[] args)
        {
            int size = args.Length;

            if (size > 0)
            {
                for (int i = 0; i < size; i++)
                    PrepareParams(args[i]);
            }

            using (ImlostGame game = new ImlostGame())
            {
                game.Run();
            }
        }
예제 #2
0
파일: Program.cs 프로젝트: demonixis/amlost
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        static void Main(string[] args)
        {
            int size = args.Length;

            if (size > 0)
            {
                for (int i = 0; i < size; i++)
                {
                    PrepareParams(args[i]);
                }
            }

            using (ImlostGame game = new ImlostGame())
            {
                game.Run();
            }
        }