mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-17 23:25:22 +00:00
Split, match and link CVector3i
This commit is contained in:
14
include/Kyoto/Math/CVector3i.hpp
Normal file
14
include/Kyoto/Math/CVector3i.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef __CVECTOR3I_HPP__
|
||||
#define __CVECTOR3I_HPP__
|
||||
|
||||
class CVector3i {
|
||||
public:
|
||||
CVector3i(int x, int y, int z);
|
||||
|
||||
private:
|
||||
int mX;
|
||||
int mY;
|
||||
int mZ;
|
||||
};
|
||||
|
||||
#endif // __CVECTOR3I_HPP__
|
||||
Reference in New Issue
Block a user