Initial commit

This commit is contained in:
Zeffuro
2025-12-19 02:38:49 +01:00
commit e59da8ab0b
8 changed files with 732 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
<Project Sdk="Dalamud.NET.Sdk/12.0.2">
<PropertyGroup>
<Version>1.0.0.0</Version>
</PropertyGroup>
</Project>
+6
View File
@@ -0,0 +1,6 @@
{
"Name": "AetherBags",
"Author": "",
"Description": "",
"Punchline": ""
}
+27
View File
@@ -0,0 +1,27 @@
using Dalamud.Plugin;
using Dalamud.Game.Command;
namespace AetherBags;
public class Plugin : IDalamudPlugin
{
public const string CommandName = "/aetherbags";
public Plugin(IDalamudPluginInterface pluginInterface)
{
pluginInterface.Create<Services>();
Services.CommandManager.AddHandler(CommandName, new CommandInfo(this.OnCommand)
{
HelpMessage = ""
});
}
public void Dispose()
{
Services.CommandManager.RemoveHandler(CommandName);
}
private void OnCommand(string command, string args)
{
}
+11
View File
@@ -0,0 +1,11 @@
using Dalamud.IoC;
using Dalamud.Plugin;
using Dalamud.Plugin.Services;
namespace AetherBags;
public class Services
{
[PluginService] public static IDalamudPluginInterface PluginInterface { get; private set; } = null!;
[PluginService] public static ICommandManager CommandManager { get; private set; } = null!;
}