mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
12 lines
187 B
C#
12 lines
187 B
C#
using System;
|
|
|
|
namespace ACE.Server.Command
|
|
{
|
|
[Flags]
|
|
public enum CommandHandlerFlag
|
|
{
|
|
None = 0x00,
|
|
ConsoleInvoke = 0x01,
|
|
RequiresWorld = 0x02
|
|
}
|
|
}
|