Added some stuff

This commit is contained in:
plane000
2018-05-11 19:50:25 +01:00
parent 7a4e92af22
commit 8a06a1f9a1
34 changed files with 2419 additions and 22 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Owl_Project {
static class Program {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}