Files
hk4e/service/game-hk4e/model/vector.go
2022-11-20 15:38:00 +08:00

8 lines
104 B
Go

package model
type Vector struct {
X float64 `bson:"x"`
Y float64 `bson:"y"`
Z float64 `bson:"z"`
}