Projektdateien hinzufügen.
This commit is contained in:
25
SamplePlugin/SampleModule.cs
Normal file
25
SamplePlugin/SampleModule.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user