21 lines
592 B
C#
21 lines
592 B
C#
using Pilz.Plugins.Advanced;
|
|
using Pilz.Plugins.Advanced.UI.Telerik;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OwnChar.App.Desktop.UI.MainTabs
|
|
{
|
|
internal class TabCharListFeature() : PluginModule(FeatureCodes.MainTab, "ownchar.tabcharlist", "Character list"), IPluginFeatureProvider<TabCharListFeature>
|
|
{
|
|
public static TabCharListFeature Instance { get; } = new();
|
|
|
|
protected override PluginModuleUI CreateNewUI()
|
|
{
|
|
return new TabCharList();
|
|
}
|
|
}
|
|
}
|