prime/include/MetroidPrime/CSimpleShadow.hpp

23 lines
440 B
C++
Raw Normal View History

#ifndef _CSIMPLESHADOW
#define _CSIMPLESHADOW
2022-08-16 02:14:28 +00:00
#include "types.h"
class CAABox;
class CStateManager;
class CTransform4f;
class CSimpleShadow {
public:
CAABox GetBounds() const;
const CTransform4f& GetTransform() const;
CAABox GetMaxShadowBox(const CAABox& bounds) const;
void Calculate(const CAABox& bounds, const CTransform4f& xf, const CStateManager& mgr);
bool Valid() const;
private:
// TODO
};
#endif // _CSIMPLESHADOW