finish SampleFunction and SampleModule

This commit is contained in:
2024-05-21 18:13:30 +02:00
parent 4bf995a2ae
commit 694c68aafd
10 changed files with 512 additions and 15 deletions

View File

@@ -1,11 +1,7 @@
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;
using SamplePlugin.LangRes;
using SM64RomManager.Core;
namespace SamplePlugin
{
@@ -13,13 +9,13 @@ namespace SamplePlugin
{
public static SampleModule Instance { get; } = new();
public SampleModule() : base()
public SampleModule() : base(MainFeatureTypes.MainForm_More, "pilzinsel64.simpleplugin.samplemodule", FeatureNames.SampleModule)
{
}
protected override PluginModuleUI CreateNewUI()
{
throw new NotImplementedException();
return new SampleModuleUI();
}
}
}