Files
minego/pkg/protocol/packet/game/client/custom_chat_completions.go
2025-08-22 05:14:59 +08:00

22 lines
477 B
Go

package client
import (
"github.com/Tnze/go-mc/data/packetid"
"github.com/Tnze/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
}