source: 2010/31/vinekova/Tankkipeli1/Ohjelma.cs @ 10337

Revision 1549, 259 bytes checked in by paaaanro, 13 years ago (diff)
RevLine 
[1549]1using System;
2
3static class Ohjelma
4{
5    static void Main(string[] args)
6    {
7        using (Tankkipeli game = new Tankkipeli())
8        {
9#if !DEBUG
10            game.IsFullScreen = true;
11#endif
12            game.Run();
13        }
14    }
15}
16
Note: See TracBrowser for help on using the repository browser.