Split, match and link CVector3i

This commit is contained in:
2022-10-02 20:09:01 -07:00
parent 302df55a60
commit 9f8f1ab7f7
5 changed files with 23 additions and 8 deletions

View File

@@ -0,0 +1,4 @@
#include "Kyoto/Math/CVector3i.hpp"
CVector3i::CVector3i(int x, int y, int z)
: mX(x), mY(y), mZ(z) {}