source:
2014/30/MikkoI/WindowsGame1/WindowsGame1/WindowsGame1/Program.cs
@
5558
Revision 5558, 392 bytes checked in by mijoilmo, 8 years ago (diff) |
---|
Line | |
---|---|
1 | using System; |
2 | |
3 | namespace WindowsGame1 |
4 | { |
5 | #if WINDOWS || XBOX |
6 | static class Program |
7 | { |
8 | /// <summary> |
9 | /// The main entry point for the application. |
10 | /// </summary> |
11 | static void Main(string[] args) |
12 | { |
13 | using (Pikseli game = new Pikseli()) |
14 | { |
15 | game.Run(); |
16 | } |
17 | } |
18 | } |
19 | #endif |
20 | } |
21 |
Note: See TracBrowser
for help on using the repository browser.