26 lines
584 B
C#
26 lines
584 B
C#
using Pilz.Plugins.Advanced;
|
|
using Pilz.Plugins.Advanced.UI.Telerik;
|
|
using SM64RomManager.Main;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SamplePlugin
|
|
{
|
|
internal class SampleModule : RMModule, IPluginFeatureProvider<SampleModule>
|
|
{
|
|
public static SampleModule Instance { get; } = new();
|
|
|
|
public SampleModule() : base()
|
|
{
|
|
}
|
|
|
|
protected override PluginModuleUI CreateNewUI()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|