mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 18:52:25 +08:00
8 lines
104 B
Go
8 lines
104 B
Go
package model
|
|
|
|
type Vector struct {
|
|
X float64 `bson:"x"`
|
|
Y float64 `bson:"y"`
|
|
Z float64 `bson:"z"`
|
|
}
|