source:
2015/24/AleksiS/CandyLand/CandyLand/CandyLand/Ohjelma.cs
@
6011
Revision 6011, 309 bytes checked in by laaljoso, 7 years ago (diff) |
---|
Line | |
---|---|
1 | using System; |
2 | |
3 | static class Ohjelma |
4 | { |
5 | #if WINDOWS || XBOX |
6 | static void Main(string[] args) |
7 | { |
8 | using (CandyLand game = new CandyLand()) |
9 | { |
10 | #if !DEBUG |
11 | game.IsFullScreen = true; |
12 | #endif |
13 | |
14 | |
15 | game.Run(); |
16 | } |
17 | } |
18 | #endif |
19 | } |
Note: See TracBrowser
for help on using the repository browser.