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