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

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{}
})
}