Initial commit

This commit is contained in:
RaduMCosma
2015-10-30 04:41:37 +02:00
commit ee040bdd71
68 changed files with 24871 additions and 0 deletions

21
Unity Studio/Program.cs Normal file
View File

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