This commit is contained in:
2022-09-06 22:39:52 +04:00
parent 0b3a0dd1ac
commit 54786c065d
6 changed files with 179 additions and 64 deletions
+1
View File
@@ -2,6 +2,7 @@ namespace Ragon.Common
{
public enum RagonAuthority: byte
{
NONE,
OWNER_ONLY,
ALL,
}
@@ -0,0 +1,10 @@
namespace Ragon.Common
{
public enum RagonReplicationMode: byte
{
LOCAL,
SERVER,
LOCAL_AND_SERVER,
BUFFERED,
}
}