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

18 lines
398 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{}
})
}