feat: support static entity

This commit is contained in:
2022-08-13 23:22:46 +04:00
parent ae485f96d4
commit dff6dbcf97
2 changed files with 72 additions and 81 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ public class Entity
public uint OwnerId { get; private set; }
public RagonAuthority Authority { get; private set; }
public EntityProperty[] Properties { get; private set; }
public byte[] Payload { get; private set; }
public byte[] Payload { get; set; }
public Entity(uint ownerId, ushort entityType, ushort staticId, RagonAuthority stateAuthority, RagonAuthority eventAuthority, int props)
{