Exemplo n.º 1
0
def TAG_String(nbt_file, output_file):
    size = read_struct(STRING_LENGTH_STRUCT, nbt_file)[0]
    handle_small_tag(nbt_file, output_file, size * 1)
Exemplo n.º 2
0
def TAG_Double(nbt_file, output_file):
    handle_small_tag(nbt_file, output_file, 8)
Exemplo n.º 3
0
def TAG_Float(nbt_file, output_file):
    handle_small_tag(nbt_file, output_file, 4)
Exemplo n.º 4
0
def TAG_Long(nbt_file, output_file):
    handle_small_tag(nbt_file, output_file, 8)
Exemplo n.º 5
0
def TAG_Short(nbt_file, output_file):
    handle_small_tag(nbt_file, output_file, 2)
Exemplo n.º 6
0
def TAG_Byte(nbt_file, output_file):
    handle_small_tag(nbt_file, output_file, 1)