-
-
Save gbrayut/516687 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace WindowsGame1 | |
{ | |
#if WINDOWS || XBOX || WP7 || ZUNE | |
static class Program | |
{ | |
/// <summary> | |
/// The main entry point for the application. | |
/// </summary> | |
static void Main(string[] args) | |
{ | |
using (Game1 game = new Game1()) | |
{ | |
game.Run(); //Run awesome XNA Game | |
} | |
} | |
} | |
#endif | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: Syntax Highlighting is supported if you use a standard file extension (ie .cs= C#)