Files

30 lines
445 B
Go
Raw Permalink Normal View History

2026-07-09 08:33:57 +08:00
package chunk
import (
"github.com/df-mc/dragonfly/server/block/cube"
)
type Column struct {
Chunk *Chunk
Entities []Entity
BlockEntities []BlockEntity
Tick int64
ScheduledBlocks []ScheduledBlockUpdate
}
type BlockEntity struct {
Pos cube.Pos
Data map[string]any
}
type Entity struct {
ID int64
Data map[string]any
}
type ScheduledBlockUpdate struct {
Pos cube.Pos
Block uint32
Tick int64
}