Czoko_Smieciarka/Trunk/MonoGameView/Program.cs

23 lines
454 B
C#
Raw Normal View History

2019-04-21 02:43:36 +02:00
using System;
2019-04-22 03:16:30 +02:00
namespace CzokoŚmieciarka.MonoGameView
2019-04-21 02:43:36 +02:00
{
#if WINDOWS || LINUX
/// <summary>
/// The main class.
/// </summary>
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
#endif
}