Projektdateien hinzufügen.

This commit is contained in:
2024-05-21 13:15:21 +02:00
parent 1a9269e073
commit 72087a9309
6 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
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();
}
}
}