mirror of https://github.com/AxioDL/metaforce.git
24 lines
403 B
C++
24 lines
403 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&)=0;
|
|
};
|
|
|
|
class CDefaultWeaponRenderer : public IWeaponRenderer
|
|
{
|
|
public:
|
|
void AddParticleGen(const CParticleGen&);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_IWEAPONRENDERER_HPP__
|