mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-15 23:37:01 +00:00
Standardize include guards, clang-format headers
Former-commit-id: 261ee48bba
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef _CUNITVECTOR3F_HPP
|
||||
#define _CUNITVECTOR3F_HPP
|
||||
#ifndef _CUNITVECTOR3F
|
||||
#define _CUNITVECTOR3F
|
||||
|
||||
#include "types.h"
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
class CUnitVector3f : public CVector3f {
|
||||
public:
|
||||
CUnitVector3f(f32 x, f32 y, f32 z) : CVector3f(x, y, z) { Normalize(); }
|
||||
CUnitVector3f(const CVector3f& vec);// : CVector3f(vec) { Normalize(); }
|
||||
CUnitVector3f(const CVector3f& vec); // : CVector3f(vec) { Normalize(); }
|
||||
// TODO
|
||||
};
|
||||
CHECK_SIZEOF(CUnitVector3f, 0xc)
|
||||
|
||||
#endif
|
||||
#endif // _CUNITVECTOR3F
|
||||
|
||||
Reference in New Issue
Block a user