2025-06-22 15:33:36 -04:00
|
|
|
using System;
|
2017-02-17 15:05:03 -05:00
|
|
|
|
2018-02-08 17:05:02 -06:00
|
|
|
namespace ACE.Server.Command
|
2017-02-17 15:05:03 -05:00
|
|
|
{
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum CommandHandlerFlag
|
|
|
|
|
{
|
|
|
|
|
None = 0x00,
|
|
|
|
|
ConsoleInvoke = 0x01,
|
|
|
|
|
RequiresWorld = 0x02
|
|
|
|
|
}
|
|
|
|
|
}
|