Skip to content

Commit 558d777

Browse files
authored
Update Vector.h
1 parent 6e22e94 commit 558d777

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

  • MarathonRecomp/api/Sonicteam/SoX/Math

MarathonRecomp/api/Sonicteam/SoX/Math/Vector.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ namespace Sonicteam::SoX::Math
1111
be<float> Y;
1212
};
1313

14+
class Vector3
15+
{
16+
public:
17+
be<float> X;
18+
be<float> Y;
19+
be<float> Z;
20+
};
21+
1422
class __declspec(align(16)) Vector
1523
{
1624
public:
@@ -28,4 +36,4 @@ namespace Sonicteam::SoX::Math
2836
be<float> Z;
2937
be<float> W;
3038
};
31-
}
39+
}

0 commit comments

Comments
 (0)