mirror of https://github.com/AxioDL/metaforce.git
24 lines
401 B
C++
24 lines
401 B
C++
|
#ifndef __URDE_IWEAPONRENDERER_HPP__
|
||
|
#define __URDE_IWEAPONRENDERER_HPP__
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
class CParticleGen;
|
||
|
|
||
|
class IWeaponRenderer
|
||
|
{
|
||
|
public:
|
||
|
virtual ~IWeaponRenderer() = default;
|
||
|
virtual void AddParticleGen(const CParticleGen&);
|
||
|
};
|
||
|
|
||
|
class CDefaultWeaponRenderer : public IWeaponRenderer
|
||
|
{
|
||
|
public:
|
||
|
void AddParticleGen(const CParticleGen&);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_IWEAPONRENDERER_HPP__
|