Files
go-mc/nbt/snbt.go
2021-07-05 00:58:41 +08:00

11 lines
190 B
Go

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