Files
MonoGame.Extended/Source/Demo.Camera/Program.cs
T
2016-02-25 17:44:06 +10:00

23 lines
414 B
C#

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