23 lines
589 B
C#
23 lines
589 B
C#
using System;
|
|
using Exceptionless;
|
|
|
|
namespace Sledgemapper
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
ExceptionlessClient.Default.Configuration.ServerUrl = "https://exceptionless.michelescandura.com";
|
|
|
|
#if DEBUG
|
|
ExceptionlessClient.Default.Startup("Qvdn6odZRJyGNnorjayMkiwjVsnAK3rNkFtn9bvL");
|
|
#else
|
|
ExceptionlessClient.Default.Startup("uprV1LocxAlUPPC9oB4eOlt8jGZ5WypMZKdJCsdL");
|
|
#endif
|
|
|
|
using (var game = new Sledgemapper())
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|