bukkubuddy-bookmark-manager/source/Program.cs
Ray dd2579e892 Changed folder structure
Added README
Added icon and wiki
2026-07-07 14:32:59 +01:00

22 lines
495 B
C#

using System;
using System.Windows.Forms;
namespace BukkuBuddy
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}