Sorts by level now.

Signed-off-by: Melissa Avery-Weir <melissa.avery@wellsfargo.com>
This commit is contained in:
Melissa Avery-Weir
2011-09-16 13:32:39 -04:00
parent 4b31f5a561
commit c330e590b0
32 changed files with 918 additions and 58 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace d20_SRD_Spell_Lists {
public partial class FrmCredits : Form {
public FrmCredits() {
InitializeComponent();
lblCredits.Text = "Developer: Melissa Avery-Weir @ http://irrsinn.net\r\n";
}
}
}