fix(vector): No closing semicolon

This commit is contained in:
Yimura 2022-01-29 21:33:18 +01:00
parent 61716c5d68
commit ffa9692d24
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

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