2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 23:07:42 +00:00

Lots of initial CThermalColdFilter implementation

This commit is contained in:
Jack Andersen
2016-07-21 16:32:23 -10:00
parent 2ff1a2ee0b
commit a6477c635d
22 changed files with 607 additions and 136 deletions

View File

@@ -0,0 +1,23 @@
#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__