Files
minego/pkg/protocol/packet/game/server/chat_ack.go

19 lines
342 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{}
})
}