source: 2010/31/nico@ala-konni.fi/pong/Ohjelma.cs @ 10337

Revision 1534, 247 bytes checked in by paaaanro, 13 years ago (diff)

pong peliä

Line 
1using System;
2
3static class Ohjelma
4{
5    static void Main(string[] args)
6    {
7        using (Peli game = new Peli())
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.