Basic grid and mouse events

This commit is contained in:
2023-04-26 02:12:24 +03:00
parent 65d5d1856e
commit 689622cb43
6 changed files with 302 additions and 0 deletions

14
McBitFont/Program.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace McBitFont {
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.Run(new Form1());
}
}
}