Exemplo n.º 1
0
 def write(self, nbt: NBTStream):
     nbt.put_short(self.value)
Exemplo n.º 2
0
 def write(self, nbt: NBTStream):
     nbt.put_double(self.value)
Exemplo n.º 3
0
 def read(self, nbt: NBTStream, tracker: ReaderTracker):
     self.value = nbt.get_signed_short()
Exemplo n.º 4
0
 def write(self, nbt: NBTStream):
     nbt.put_byte(self.value)
Exemplo n.º 5
0
 def read(self, nbt: NBTStream, tracker: ReaderTracker):
     self.value = nbt.get_double()
Exemplo n.º 6
0
 def write(self, nbt: NBTStream):
     nbt.put_int(len(self.value))
     nbt.put(bytes(self.value))
Exemplo n.º 7
0
 def read(self, nbt: NBTStream, tracker: ReaderTracker):
     self.value = nbt.get(nbt.get_int())
Exemplo n.º 8
0
 def write(self, nbt: NBTStream):
     nbt.put_int_array(self.value)
Exemplo n.º 9
0
 def write(self, nbt: NBTStream):
     nbt.put_string(self.value)
Exemplo n.º 10
0
 def read(self, nbt: NBTStream, tracker: ReaderTracker):
     self.value = nbt.get_string()