sledgemapper/Sledgemapper/Program.cs
Michele Scandura dd97d5ec4e
All checks were successful
continuous-integration/drone/push Build is passing
switch to sentry
2021-09-15 16:11:40 +01:00

16 lines
350 B
C#

using System;
namespace Sledgemapper
{
public static class Program
{
[STAThread]
static void Main()
{
using(Sentry.SentrySdk.Init("https://973ac1606651454ba7a19f642d0a9bc1@glitchtip.michelescandura.com/1"))
using (var game = new Sledgemapper())
game.Run();
}
}
}