up3
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
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
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user