Files

10 lines
225 B
C++
Raw Permalink Normal View History

2020-01-15 07:07:48 -05:00
#include "Runtime/Graphics/IWeaponRenderer.hpp"
#include "Runtime/Particle/CParticleGen.hpp"
2021-04-10 01:42:06 -07:00
namespace metaforce {
2020-08-23 15:52:14 -04:00
void CDefaultWeaponRenderer::AddParticleGen(CParticleGen& gen) { gen.Render(); }
2021-04-10 01:42:06 -07:00
} // namespace metaforce