refactor package
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
package client
|
||||
|
||||
import (
|
||||
"git.konjactw.dev/patyhank/minego/codec/packet/game/client"
|
||||
"github.com/Tnze/go-mc/data/packetid"
|
||||
)
|
||||
|
||||
type ConfigCustomReportDetails struct {
|
||||
client.CustomReportDetails
|
||||
}
|
||||
|
||||
func (ConfigCustomReportDetails) PacketID() packetid.ClientboundPacketID {
|
||||
return packetid.ClientboundConfigCustomReportDetails
|
||||
}
|
||||
|
||||
func init() {
|
||||
registerPacket(packetid.ClientboundConfigCustomReportDetails, func() ClientboundPacket {
|
||||
return &ConfigCustomReportDetails{}
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user