NBT RawMessage fully support

This commit is contained in:
Tnze
2021-07-05 00:58:41 +08:00
parent 43588a8894
commit d7091db5b3
13 changed files with 196 additions and 94 deletions

10
nbt/snbt.go Normal file
View File

@ -0,0 +1,10 @@
package nbt
type StringifiedNBT struct {
Name string
Content string
}
func (n *StringifiedNBT) Decode(tagType byte, tagName string, r DecoderReader) error {
panic("unimplemented")
}