22 lines
501 B
Go
22 lines
501 B
Go
package client
|
|
|
|
import (
|
|
"git.konjactw.dev/falloutBot/go-mc/data/packetid"
|
|
"git.konjactw.dev/falloutBot/go-mc/net/packet"
|
|
)
|
|
|
|
var _ ClientboundPacket = (*CustomChatCompletions)(nil)
|
|
var _ packet.Field = (*CustomChatCompletions)(nil)
|
|
|
|
// CustomChatCompletionsPacket
|
|
//
|
|
//codec:gen
|
|
type CustomChatCompletions struct {
|
|
Action int32 `mc:"VarInt"`
|
|
Entries []string
|
|
}
|
|
|
|
func (CustomChatCompletions) ClientboundPacketID() packetid.ClientboundPacketID {
|
|
return packetid.ClientboundCustomChatCompletions
|
|
}
|