服务器玩家在线信息同步

This commit is contained in:
flswld
2023-03-17 14:30:49 +08:00
parent 658b577c20
commit 7de1d2e765
19 changed files with 286 additions and 77 deletions

View File

@@ -65,3 +65,10 @@ func Vector3CrossProd(v1 *Vector3, v2 *Vector3) *Vector3 {
v3.Z = v1.X*v2.Y - v2.X*v1.Y
return v3
}
// MeshVector 网格向量
type MeshVector struct {
X int16
Y int16
Z int16
}