fix: static in snapshot

This commit is contained in:
2022-08-14 12:36:12 +04:00
parent 81879d4fe2
commit f2934bc8ee
4 changed files with 14 additions and 17 deletions
+2 -2
View File
@@ -8,12 +8,12 @@ public class Entity
public ushort EntityId { get; private set; }
public ushort StaticId { get; private set; }
public ushort EntityType { get; private set; }
public uint OwnerId { get; private set; }
public ushort OwnerId { get; private set; }
public RagonAuthority Authority { get; private set; }
public EntityProperty[] Properties { get; private set; }
public byte[] Payload { get; set; }
public Entity(uint ownerId, ushort entityType, ushort staticId, RagonAuthority stateAuthority, RagonAuthority eventAuthority, int props)
public Entity(ushort ownerId, ushort entityType, ushort staticId, RagonAuthority stateAuthority, RagonAuthority eventAuthority, int props)
{
OwnerId = ownerId;
StaticId = staticId;