pkNX/pkNX.WinForms/MainEditor/EditorUU.cs
Kurt 537ce93efa Initial c#8 update
pkNX.Sprites to be replaced with a pkhex.drawing dll once that is
updated with swsh stuff (when the time comes)
2019-10-15 18:47:20 -07:00

16 lines
333 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()
{
using var form = new Form();
form.ShowDialog();
}
}
}