mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-14 15:50:14 -05:00
pkNX.Sprites to be replaced with a pkhex.drawing dll once that is updated with swsh stuff (when the time comes)
16 lines
333 B
C#
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();
|
|
}
|
|
}
|
|
} |