mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Bump Harmony version * Add command category support * Switch usage to unpatch all, split register commands from patch with Harmony * Move instantiation of command handler dictionary to declaration * Remove deferred command registration * Revert build output changes * Move mod listing to end of startup
17 lines
393 B
C#
17 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ACE.Server.Mods;
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
|
public class CommandCategoryAttribute : Attribute
|
|
{
|
|
public string Category { get; }
|
|
|
|
public CommandCategoryAttribute(string category)
|
|
{
|
|
Category = category;
|
|
}
|
|
}
|