Files
minego/codec/packet/game/server/configuration_acknowledged.go

18 lines
397 B
Go

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