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
+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)
{
}