Ejemplo n.º 1
0
 public static int append_var_int(LuaBytes bytes, uint value)
 {
     return(bytes.SetVarInt(value, bytes.length));
 }
Ejemplo n.º 2
0
 public static int set_var_int(LuaBytes bytes, int offset, uint value)
 {
     return bytes.SetVarInt(value, offset - 1);
 }
Ejemplo n.º 3
0
 public static int set_var_int(LuaBytes bytes, int offset, uint value)
 {
     return(bytes.SetVarInt(value, offset - 1));
 }
Ejemplo n.º 4
0
 public static int append_var_int(LuaBytes bytes, uint value)
 {
     return bytes.SetVarInt(value, bytes.length);
 }