prime/include/Kyoto/Math/CPlane.hpp
Luke Street 234afca6c2 clang-format pass
Former-commit-id: 6a979e343f6a88e4c9b78d3917c1fabfcb211a0a
2022-09-18 02:05:46 -04:00

19 lines
178 B
C++

#ifndef _CPLANE_HPP
#define _CPLANE_HPP
#include "types.h"
class CPlane {
public:
// TODO
private:
f32 x;
f32 y;
f32 z;
f32 w;
};
CHECK_SIZEOF(CPlane, 0x10)
#endif