Files
MonoGame.Extended/Source/Demo.SceneGraphs/Program.cs
T

23 lines
419 B
C#

using System;
namespace Demo.SceneGraphs
{
#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
}