Files
minego/pkg/protocol/packet/game/client/custom_chat_completions.go
2025-08-27 20:28:44 +08:00

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
}