2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 13:11:21 +00:00
metaforce/Runtime/Graphics/IWeaponRenderer.hpp
2016-07-21 16:32:23 -10:00

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__