/// <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(); } }
/// <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(); } }