add api culture

This commit is contained in:
2024-05-17 20:43:16 +02:00
parent 8e61053f44
commit 79137e7bc1
16 changed files with 138 additions and 74 deletions

View File

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

View File

@@ -1,13 +1,4 @@
using Pilz.Plugins.Advanced.UI.Telerik;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace OwnChar.App.Desktop.UI.MainTabs
{

View File

@@ -1,20 +0,0 @@
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 TabEditCharFeature() : PluginModule(FeatureCodes.MainTab, "ownchar.tabcharedit", "Edit Character"), IPluginFeatureProvider<TabEditCharFeature>
{
public static TabEditCharFeature Instance { get; } = new();
protected override PluginModuleUI CreateNewUI()
{
return new TabEditChar();
}
}
}