Пример #1
0
 public static bool append_int16_le(LuaBytes bytes, ushort value)
 {
     return(bytes.SetLittleInt16(value, bytes.length));
 }
Пример #2
0
 public static bool append_int16_le(LuaBytes bytes, ushort value)
 {
     return bytes.SetLittleInt16(value, bytes.length);
 }
Пример #3
0
 public static bool set_int16_le(LuaBytes bytes, int offset, ushort value)
 {
     return(bytes.SetLittleInt16(value, offset - 1));
 }
Пример #4
0
 public static bool set_int16_le(LuaBytes bytes, int offset, ushort value)
 {
     return bytes.SetLittleInt16(value, offset - 1);
 }