2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 15:11:22 +00:00
metaforce/Runtime/Graphics/IWeaponRenderer.cpp
Lioncash a32e21df14 General: Resolve -Wcast-qual warnings
We can just avoid casting away const in order to resolve these warnings.
2020-08-23 15:54:54 -04:00

10 lines
215 B
C++

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