mirror of https://github.com/PrimeDecomp/prime.git
19 lines
327 B
C++
19 lines
327 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();
|
|
};
|
|
CHECK_SIZEOF(CEffect, 0xe8)
|
|
|
|
#endif // _CEFFECT
|