public static UpdateField<ObjectUpdateFields> GetUpdateField(ObjectUpdateFields uf) { uint index = (uint)uf; if (index >= (uint)ObjectUpdateFields.End) return UpdateField.CreateUnknown<ObjectUpdateFields>(uf); return _ObjectUpdateFields[index]; }
public float GetFloat(ObjectUpdateFields index) { return(GetFloat((uint)index)); }
public long GetLong(ObjectUpdateFields index) { return(GetLong((uint)index)); }
public bool ValueExists(ObjectUpdateFields index) { return(ValueExists((uint)index)); }
public bool ValueExists(ObjectUpdateFields index) { return ValueExists((uint)index); }
public void SetShort(ObjectUpdateFields index, ushort value, byte offset) { SetShort((uint)index, value, offset); }
public void SetFloat(ObjectUpdateFields index, float value) { SetFloat((uint)index, value); }
public byte GetByte(ObjectUpdateFields index, byte offset) { return(GetByte((uint)index, offset)); }
public void SetLong(ObjectUpdateFields index, long value) { SetLong((uint)index, value); }
public byte GetByte(ObjectUpdateFields index, byte offset) { return GetByte((uint)index, offset); }
public ushort GetShort(ObjectUpdateFields index, byte offset) { return GetShort((uint)index, offset); }
public int GetInt(ObjectUpdateFields index) { return GetInt((uint)index); }
public float GetFloat(ObjectUpdateFields index) { return GetFloat((uint)index); }
public long GetLong(ObjectUpdateFields index) { return GetLong((uint)index); }
public int GetInt(ObjectUpdateFields index) { return(GetInt((uint)index)); }
public ushort GetShort(ObjectUpdateFields index, byte offset) { return(GetShort((uint)index, offset)); }
public void SetInt(ObjectUpdateFields index, int value) { SetInt((uint)index, value); }
public void SetByte(ObjectUpdateFields index, byte value, byte offset) { SetByte((uint)index, value, offset); }