Here be dragons

This commit is contained in:
Joakim Hellsén 2026-05-24 23:03:36 +02:00
commit bd3e384ba4
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
6 changed files with 217 additions and 0 deletions

18
Program.cs Normal file
View file

@ -0,0 +1,18 @@
namespace Juicebox
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.SetColorMode(SystemColorMode.System);
Application.Run(new JuiceBox());
}
}
}