Files
Melissa Avery-Weir c330e590b0 Sorts by level now.
Signed-off-by: Melissa Avery-Weir <melissa.avery@wellsfargo.com>
2011-09-16 13:32:39 -04:00

19 lines
480 B
C#

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