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 { public static SampleModule Instance { get; } = new(); public SampleModule() : base() { } protected override PluginModuleUI CreateNewUI() { throw new NotImplementedException(); } } }