示例#1
0
 public ObjectState(ObjectStates name, ObjStateProperties props, uint?id, uint?baseId = null) : this(name)
 {
     TickCount    = props.TickCount;
     Distribution = props.Distribution;
     Eternal      = props.Eternal;
     Id           = id;
     BaseId       = baseId;
 }
示例#2
0
 public ObjectState(ObjectStates name, ObjStateProperties props) : this(name)
 {
     TickCount    = props.TickCount;
     Distribution = props.Distribution;
     Eternal      = props.Eternal;
     Id           = props.Id;
     BaseId       = props.BaseId;
 }