mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-12 10:46:08 +00:00
Renaming & more CActor progress
This commit is contained in:
22
include/MetroidPrime/CSimpleShadow.hpp
Normal file
22
include/MetroidPrime/CSimpleShadow.hpp
Normal 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
|
||||
Reference in New Issue
Block a user