Example #1
0
 public void SetShort(DynamicObjectUpdateFields index, ushort value, byte offset)
 {
     SetShort((uint)index, value, offset);
 }
Example #2
0
 public void SetFloat(DynamicObjectUpdateFields index, float value)
 {
     SetFloat((uint)index, value);
 }
Example #3
0
 public void SetInt(DynamicObjectUpdateFields index, int value)
 {
     SetInt((uint)index, value);
 }
Example #4
0
 public long GetLong(DynamicObjectUpdateFields index) { return GetLong((uint)index); }
Example #5
0
 public void SetLong(DynamicObjectUpdateFields index, long value)
 {
     SetLong((uint)index, value);
 }
Example #6
0
 public long GetLong(DynamicObjectUpdateFields index)
 {
     return(GetLong((uint)index));
 }
Example #7
0
 public int GetInt(DynamicObjectUpdateFields index)
 {
     return(GetInt((uint)index));
 }
Example #8
0
 public void SetFloat(DynamicObjectUpdateFields index, float value) { SetFloat((uint)index, value); }
Example #9
0
 public void SetInt(DynamicObjectUpdateFields index, int value) { SetInt((uint)index, value); }
Example #10
0
 public byte GetByte(DynamicObjectUpdateFields index, byte offset) { return GetByte((uint)index, offset); }
Example #11
0
 public void SetLong(DynamicObjectUpdateFields index, long value) { SetLong((uint)index, value); }
Example #12
0
 public ushort GetShort(DynamicObjectUpdateFields index, byte offset) { return GetShort((uint)index, offset); }
Example #13
0
 public int GetInt(DynamicObjectUpdateFields index) { return GetInt((uint)index); }
Example #14
0
 public float GetFloat(DynamicObjectUpdateFields index) { return GetFloat((uint)index); }
Example #15
0
 public void SetByte(DynamicObjectUpdateFields index, byte value, byte offset)
 {
     SetByte((uint)index, value, offset);
 }
Example #16
0
 public void SetShort(DynamicObjectUpdateFields index, ushort value, byte offset) { SetShort((uint)index, value, offset); }
Example #17
0
 public bool ValueExists(DynamicObjectUpdateFields index)
 {
     return(ValueExists((uint)index));
 }
Example #18
0
 public void SetByte(DynamicObjectUpdateFields index, byte value, byte offset) { SetByte((uint)index, value, offset); }
Example #19
0
 public float GetFloat(DynamicObjectUpdateFields index)
 {
     return(GetFloat((uint)index));
 }
Example #20
0
 public byte GetByte(DynamicObjectUpdateFields index, byte offset)
 {
     return(GetByte((uint)index, offset));
 }
Example #21
0
 public ushort GetShort(DynamicObjectUpdateFields index, byte offset)
 {
     return(GetShort((uint)index, offset));
 }
Example #22
0
 public bool ValueExists(DynamicObjectUpdateFields index) { return ValueExists((uint)index); }