diff options
Diffstat (limited to 'V3/Program.cs')
-rw-r--r-- | V3/Program.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/V3/Program.cs b/V3/Program.cs new file mode 100644 index 0000000..aa1fdcd --- /dev/null +++ b/V3/Program.cs @@ -0,0 +1,20 @@ +using System; + +namespace V3 +{ + /// <summary> + /// The main class. + /// </summary> + public static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + using (var game = new V3Game()) + game.Run(); + } + } +} |