Adds DBEditor to Master Project

DBEditor can now add new groups
This commit is contained in:
Steven French 2011-07-23 14:41:03 +12:00
parent 64ca3e7148
commit ca9c5a5d4a
17 changed files with 2042 additions and 0 deletions

22
DBEditor/Program.cs Normal file
View file

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