mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
11 lines
176 B
C#
11 lines
176 B
C#
using System;
|
|
|
|
namespace NexusForever.WorldServer.Command.Static
|
|
{
|
|
[Flags]
|
|
public enum ParameterFlags
|
|
{
|
|
None = 0x00,
|
|
Optional = 0x01
|
|
}
|
|
}
|