13 lines
183 B
Go
13 lines
183 B
Go
package client
|
|
|
|
import (
|
|
"github.com/Tnze/go-mc/nbt"
|
|
)
|
|
|
|
//codec:gen
|
|
type ShowDialog struct {
|
|
DialogID int32 `mc:"VarInt"`
|
|
//opt:id:DialogID
|
|
DialogData nbt.RawMessage `mc:"NBT"`
|
|
}
|