using System;
namespace LensFlare.DesktopGL
{
///
/// The main class for DesktopGL.
///
public static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
using (var game = new LensFlareGame())
game.Run();
}
}
}