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

10 lines
174 B
Go

package client
import "git.konjactw.dev/falloutBot/go-mc/level"
//codec:gen
type UpdateLight struct {
ChunkX, ChunkZ int32 `mc:"VarInt"`
Data level.LightData
}