chore: renaming enums

This commit is contained in:
2022-09-10 10:25:45 +04:00
parent 54786c065d
commit dbaa5d9d92
4 changed files with 17 additions and 17 deletions
+3 -3
View File
@@ -2,8 +2,8 @@ namespace Ragon.Common
{
public enum RagonAuthority: byte
{
NONE,
OWNER_ONLY,
ALL,
None,
OwnerOnly,
All,
}
}
+4 -4
View File
@@ -2,9 +2,9 @@ namespace Ragon.Common
{
public enum RagonReplicationMode: byte
{
LOCAL,
SERVER,
LOCAL_AND_SERVER,
BUFFERED,
Local,
Server,
LocalAndServer,
Buffered,
}
}
+3 -3
View File
@@ -2,8 +2,8 @@ namespace Ragon.Common
{
public enum RagonTarget: byte
{
OWNER,
EXCEPT_OWNER,
ALL,
Owner,
ExceptOwner,
All,
}
}