networkPaint/networkPaint/Program.cs
Persephone Bubblegum-Holiday 2b6f1aad8f Add project files.
2025-02-11 12:32:22 -07:00

20 lines
476 B
C#

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