Files
minego/pkg/protocol/packet/game/client/forget_level_chunk.go
2025-08-27 20:28:44 +08:00

18 lines
364 B
Go

package client
import (
"git.konjactw.dev/falloutBot/go-mc/data/packetid"
"git.konjactw.dev/falloutBot/go-mc/level"
)
var _ ClientboundPacket = (*ForgetLevelChunk)(nil)
//codec:gen
type ForgetLevelChunk struct {
Pos level.ChunkPos
}
func (ForgetLevelChunk) ClientboundPacketID() packetid.ClientboundPacketID {
return packetid.ClientboundForgetLevelChunk
}