source: zhipeng_j/Tankkipeli1/Ohjelma.cs @ 288

Revision 288, 337 bytes checked in by zhjiang, 14 years ago (diff)
Line 
1#region Usings
2using System;
3#endregion
4
5namespace Tankkipeli1
6{
7    static class Ohjelma
8    {
9        Vector2D nopeusylos = new Vector2D(0.200);
10        static void Main(string[] args)
11        {
12            using (Peli game = new Peli())
13            {
14                game.Run();
15            }
16        }
17    }
18}
19
Note: See TracBrowser for help on using the repository browser.