Files
go-mc/nbt/interface.go
2021-02-18 14:07:30 +08:00

10 lines
155 B
Go

package nbt
type Unmarshaler interface {
Unmarshal(tagType byte, tagName string, r DecoderReader) error
}
//type Marshaller interface{
// Marshal()
//}