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

19 lines
341 B
Go

package server
import "github.com/Tnze/go-mc/data/packetid"
//codec:gen
type ChatAck struct {
MessageCount int32 `mc:"VarInt"`
}
func (ChatAck) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundChatAck
}
func init() {
registerPacket(packetid.ServerboundChatAck, func() ServerboundPacket {
return &ChatAck{}
})
}