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

13 lines
204 B
Go
Raw Normal View History

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