mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
12 lines
225 B
C#
12 lines
225 B
C#
namespace NexusForever.WorldServer.Command.Static
|
|
{
|
|
public enum CommandResult
|
|
{
|
|
Ok,
|
|
NoPermission,
|
|
NoCommand,
|
|
InvalidParameters,
|
|
InvalidContext,
|
|
InvalidTarget
|
|
}
|
|
}
|