-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
33 lines (32 loc) · 939 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System.Diagnostics;
namespace Win538Electors
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
string aiDifficulty = "Normal";
if (args != null && args.Length > 0)
{
if (args[0] == "--easy" || args[0] == "-e")
{
aiDifficulty = "Easy";
}
else if (args[0] == "--normal" || args[0] == "-n")
{
aiDifficulty = "Normal";
}
else if (args[0] == "--hard" || args[0] == "-h")
{
aiDifficulty = "Hard";
}
}
ApplicationConfiguration.Initialize();
Application.Run(new Form1(aiDifficulty));
}
}
}