mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-28 16:57:03 -05:00
15 lines
298 B
C#
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();
|
|
}
|
|
}
|
|
} |