mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-15 08:10:22 -05:00
14 lines
291 B
C#
14 lines
291 B
C#
using pkNX.Game;
|
|
|
|
namespace pkNX.WinForms.Controls
|
|
{
|
|
internal class EditorGG : EditorBase
|
|
{
|
|
protected internal EditorGG(GameManager rom) : base(rom) { }
|
|
|
|
public void EditTrainers()
|
|
{
|
|
WinFormsUtil.Alert("Not implemented yet.");
|
|
}
|
|
}
|
|
} |