tkcashgame_v4/app/eonline/internal/config/bright/serialization/Vector3.go

12 lines
176 B
Go
Raw Normal View History

2025-10-22 10:01:11 +00:00
package serialization
type Vector3 struct {
X float32
Y float32
Z float32
}
func NewVector3(x float32, y float32, z float32) Vector3 {
return Vector3{X: x, Y: y, Z: z}
}