fix(vector): No closing semicolon

This commit is contained in:
Yimura 2022-01-29 21:33:18 +01:00
parent 8118929e97
commit 47d153b423

View File

@ -6,7 +6,7 @@ namespace rage
union vector3 union vector3
{ {
T data[3]; T data[3];
struct {T x, y, z}; struct { T x, y, z; };
}; };
typedef vector3<float> fvector3; typedef vector3<float> fvector3;