corrade-vassal – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | vero | 1 | using System; |
2 | using System.Collections.Generic; |
||
3 | using System.Windows.Forms; |
||
4 | |||
5 | namespace Heightmap |
||
6 | { |
||
7 | static class Heightmap |
||
8 | { |
||
9 | /// <summary> |
||
10 | /// The main entry point for the application. |
||
11 | /// </summary> |
||
12 | [STAThread] |
||
13 | static void Main(string[] args) |
||
14 | { |
||
15 | if (args.Length != 3) |
||
16 | { |
||
17 | Console.WriteLine("Usage: [FirstName] [LastName] [password]"); |
||
18 | return; |
||
19 | } |
||
20 | |||
21 | Application.EnableVisualStyles(); |
||
22 | Application.SetCompatibleTextRenderingDefault(false); |
||
23 | Application.Run(new frmHeightmap(args[0], args[1], args[2])); |
||
24 | } |
||
25 | } |
||
26 | } |