Example #1
0
        /// <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();
            }
        }
Example #2
0
        /// <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();
            }
        }