Skip to content

Commit

Permalink
Merge pull request #137 from MonsterDruide1/vectoru
Browse files Browse the repository at this point in the history
math: Add `u32` variant to `Vector`s
  • Loading branch information
leoetlino committed Jun 6, 2024
2 parents 1ae2ac7 + a32aa59 commit ae518fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/math/seadVectorFwd.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@ template <typename T>
struct Vector4;

using Vector2i = Vector2<s32>;
using Vector2u = Vector2<u32>;
using Vector2f = Vector2<f32>;

using Vector3i = Vector3<s32>;
using Vector3u = Vector3<u32>;
using Vector3f = Vector3<f32>;

using Vector4i = Vector4<s32>;
using Vector4u = Vector4<u32>;
using Vector4f = Vector4<f32>;

} // namespace sead

0 comments on commit ae518fa

Please sign in to comment.