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

13 lines
198 B
C++

#include "IWeaponRenderer.hpp"
#include "Particle/CParticleGen.hpp"
namespace urde
{
void CDefaultWeaponRenderer::AddParticleGen(const CParticleGen& gen)
{
((CParticleGen&)gen).Render();
}
}