Files
go-mc/nbt/interface.go
2019-07-31 21:00:30 +08:00

10 lines
154 B
Go

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