mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-10-20 04:36:01 -04:00
22 lines
477 B
C#
22 lines
477 B
C#
using System;
|
|
using ClassicalSharp;
|
|
|
|
namespace Launcher2 {
|
|
|
|
internal sealed class Program {
|
|
|
|
public const string AppName = "ClassicalSharp Launcher 0.95";
|
|
|
|
[STAThread]
|
|
static void Main( string[] args ) {
|
|
ErrorHandler.InstallHandler( "launcher.log" );
|
|
LauncherWindow window = new LauncherWindow();
|
|
window.Run();
|
|
}
|
|
|
|
internal static bool LogException( Exception ex ) {
|
|
return ErrorHandler.LogHandledException( ex );
|
|
}
|
|
}
|
|
}
|