10 lines
154 B
Go
10 lines
154 B
Go
package nbt
|
|
|
|
type Unmarshaler interface {
|
|
Unmarshal(tagType byte, tagName string, r DecoderReader) error
|
|
}
|
|
|
|
//type Marshaler interface{
|
|
// Marshal()
|
|
//}
|