mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2025-02-17 20:31:29 +01:00
15 lines
234 B
Python
15 lines
234 B
Python
|
# -*- coding: utf8 -*-
|
||
|
from pynbt.nbt import (
|
||
|
NBTFile,
|
||
|
TAG_Byte,
|
||
|
TAG_Short,
|
||
|
TAG_Int,
|
||
|
TAG_Long,
|
||
|
TAG_Float,
|
||
|
TAG_Double,
|
||
|
TAG_Byte_Array,
|
||
|
TAG_String,
|
||
|
TAG_List,
|
||
|
TAG_Compound,
|
||
|
TAG_Int_Array
|
||
|
)
|