refactor package
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
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{}
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user