aboutsummaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..665254f
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace Celesteia
+{
+ public static class Program
+ {
+ [STAThread]
+ static void Main()
+ {
+ using (var game = new GameInstance())
+ game.Run();
+ }
+ }
+}