diff options
Diffstat (limited to 'WindowsPhone/KeyboardTest/KeyboardTest/Program.cs')
-rw-r--r-- | WindowsPhone/KeyboardTest/KeyboardTest/Program.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/WindowsPhone/KeyboardTest/KeyboardTest/Program.cs b/WindowsPhone/KeyboardTest/KeyboardTest/Program.cs new file mode 100644 index 0000000..66a93da --- /dev/null +++ b/WindowsPhone/KeyboardTest/KeyboardTest/Program.cs @@ -0,0 +1,21 @@ +using System;
+
+namespace KeyboardTest
+{
+#if WINDOWS || XBOX
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ static void Main(string[] args)
+ {
+ using (Game1 game = new Game1())
+ {
+ game.Run();
+ }
+ }
+ }
+#endif
+}
+
|