mirror of https://github.com/PrimeDecomp/prime.git
23 lines
485 B
C++
23 lines
485 B
C++
#ifndef _CEFFECT
|
|
#define _CEFFECT
|
|
|
|
#include "types.h"
|
|
|
|
#include "MetroidPrime/CActor.hpp"
|
|
|
|
class CEffect : public CActor {
|
|
public:
|
|
CEffect(TUniqueId uid, const CEntityInfo& info, bool, const rstl::string& name,
|
|
const CTransform4f& xf);
|
|
|
|
// CEntity
|
|
~CEffect() override {}
|
|
|
|
// CActor
|
|
void AddToRenderer(const CFrustumPlanes&, const CStateManager&) const override;
|
|
void Render(const CStateManager&) const override;
|
|
};
|
|
CHECK_SIZEOF(CEffect, 0xe8)
|
|
|
|
#endif // _CEFFECT
|