ace/Source/ACE.Server/Command/CommandHandlerFlag.cs
Galli ecd6ce2b43
Remove UTF-8 BOMs across repository (#4324)
* remove bom from source files

* Remove stray BOM cleanup comments
2025-06-22 15:33:36 -04:00

12 lines
187 B
C#

using System;
namespace ACE.Server.Command
{
[Flags]
public enum CommandHandlerFlag
{
None = 0x00,
ConsoleInvoke = 0x01,
RequiresWorld = 0x02
}
}