pkNX/pkNX.WinForms/MainEditor/EditorUU.cs
2018-11-13 19:44:43 -08:00

15 lines
298 B
C#

using System.Windows.Forms;
using pkNX.Game;
namespace pkNX.WinForms.Controls
{
internal class EditorUU : EditorBase
{
protected internal EditorUU(GameManager rom) : base(rom) { }
public void TestButton()
{
new Form().ShowDialog();
}
}
}