sticky-viewer/sticky_viewer/Program.cs

23 lines
418 B
C#

using System;
namespace input_display
{
#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 Display())
game.Run();
}
}
#endif
}