22 lines
586 B
C#
22 lines
586 B
C#
using Pilz.Plugins.Advanced;
|
|
using Pilz.Plugins.Advanced.UI.Telerik;
|
|
using SamplePlugin.LangRes;
|
|
using SM64RomManager.Core;
|
|
|
|
namespace SamplePlugin
|
|
{
|
|
internal class SampleModule : RMModule, IPluginFeatureProvider<SampleModule>
|
|
{
|
|
public static SampleModule Instance { get; } = new();
|
|
|
|
public SampleModule() : base(MainFeatureTypes.MainForm_More, "pilzinsel64.simpleplugin.samplemodule", FeatureNames.SampleModule)
|
|
{
|
|
}
|
|
|
|
protected override PluginModuleUI CreateNewUI()
|
|
{
|
|
return new SampleModuleUI();
|
|
}
|
|
}
|
|
}
|