26ed99fda6
Build and deploy / Build (push) Has been cancelled
Build and deploy / Update Contributors (push) Has been cancelled
Build and deploy / Deploy (push) Has been cancelled
30 lines
445 B
Go
30 lines
445 B
Go
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
|
|
}
|