source:
2015/23/HenriK/Pong/Ohjelma.cs
@
5853
Revision 5853, 340 bytes checked in by jotapoti, 8 years ago (diff) |
---|
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | |
5 | /// <summary> |
6 | /// The main class. |
7 | /// </summary> |
8 | public static class Program |
9 | { |
10 | /// <summary> |
11 | /// The main entry point for the application. |
12 | /// </summary> |
13 | [STAThread] |
14 | static void Main () |
15 | { |
16 | using (var peli = new Pong ()) |
17 | peli.Run (); |
18 | } |
19 | } |
20 |
Note: See TracBrowser
for help on using the repository browser.