Rev | Line | |
---|
[9643] | 1 | #region Using Statements |
---|
| 2 | using System; |
---|
| 3 | using System.Collections.Generic; |
---|
| 4 | using System.Linq; |
---|
| 5 | #endregion |
---|
| 6 | |
---|
| 7 | namespace Program |
---|
| 8 | { |
---|
| 9 | #if WINDOWS || LINUX |
---|
| 10 | /// <summary> |
---|
| 11 | /// The main class. |
---|
| 12 | /// </summary> |
---|
| 13 | public static class Program |
---|
| 14 | { |
---|
| 15 | /// <summary> |
---|
| 16 | /// The main entry point for the application. |
---|
| 17 | /// </summary> |
---|
| 18 | [STAThread] |
---|
| 19 | static void Main() |
---|
| 20 | { |
---|
| 21 | using ( var game = new JokuEeppinenNimi() ) |
---|
| 22 | game.Run(); |
---|
| 23 | } |
---|
| 24 | } |
---|
| 25 | #endif |
---|
| 26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.