Renaming & more CActor progress

This commit is contained in:
2022-08-15 22:14:28 -04:00
parent 8e90988b5c
commit bcfefcc34a
82 changed files with 1579 additions and 1043 deletions

View File

@@ -0,0 +1,22 @@
#ifndef _CSIMPLESHADOW_HPP
#define _CSIMPLESHADOW_HPP
#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