mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-29 16:43:00 -04:00
15 lines
306 B
C#
15 lines
306 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Launcher {
|
|
|
|
internal sealed class Program {
|
|
|
|
[STAThread]
|
|
private static void Main( string[] args ) {
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault( false );
|
|
Application.Run( new MainForm() );
|
|
}
|
|
}
|
|
} |