prime/include/Collision/CRayCastResult.hpp

37 lines
725 B
C++
Raw Normal View History

#ifndef _CRAYCASTRESULT
#define _CRAYCASTRESULT
#include "types.h"
#include "Kyoto/Math/CPlane.hpp"
#include "Kyoto/Math/CVector3f.hpp"
#include "Collision/CMaterialList.hpp"
class CRayCastResult {
public:
enum EInvalid {
kI_Invalid,
kI_Valid,
};
float GetTime() const { return x0_t; }
2022-09-29 05:30:20 +00:00
bool IsValid() const { return x20_valid; }
// GetPlane__14CRayCastResultCFv
// GetPoint__14CRayCastResultCFv
// GetMaterial__14CRayCastResultCFv
// Transform__14CRayCastResultFRC12CTransform4f
// MakeInvalid__14CRayCastResultFv
private:
float x0_t;
CVector3f x4_point;
CPlane x10_plane;
2022-09-29 05:30:20 +00:00
bool x20_valid;
CMaterialList x28_material;
};
CHECK_SIZEOF(CRayCastResult, 0x30)
#endif // _CRAYCASTRESULT