mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-19 19:08:01 -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();
|
|
}
|
|
}
|
|
} |