Add project files.

This commit is contained in:
Persephone Bubblegum-Holiday 2025-02-11 12:32:22 -07:00
parent 3dbd19281e
commit 2b6f1aad8f
11 changed files with 743 additions and 0 deletions

20
networkPaint/Program.cs Normal file
View file

@ -0,0 +1,20 @@
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());
}
}
}