bot can receive chunks now

This commit is contained in:
Tnze
2022-03-13 11:57:02 +08:00
parent d8695636b6
commit 2aace6b51a
17 changed files with 452 additions and 78 deletions

14
server/playermove.go Normal file
View File

@ -0,0 +1,14 @@
package server
type EntitySet struct {
}
type entityPosition struct {
player *Player
x, y, z float64
yaw, pitch float32
}
func NewEntitySet() *EntitySet {
return &EntitySet{}
}