mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-16 14:31:21 +00:00
18 lines
278 B
C++
18 lines
278 B
C++
#ifndef _CACTORMODELPARTICLES
|
|
#define _CACTORMODELPARTICLES
|
|
|
|
#include "types.h"
|
|
|
|
class CActor;
|
|
class CStateManager;
|
|
|
|
class CActorModelParticles {
|
|
public:
|
|
void Render(const CStateManager& mgr, const CActor& actor) const;
|
|
|
|
private:
|
|
// TODO
|
|
};
|
|
|
|
#endif // _CACTORMODELPARTICLES
|