2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-15 01:26:08 +00:00

Implement CTweaks::RegisterResourceTweaks

This commit is contained in:
2016-08-31 13:43:41 -07:00
parent 6229fa6bfe
commit d104c7eb45
3 changed files with 28 additions and 0 deletions

View File

@@ -113,6 +113,9 @@ struct CTweakGunRes : ITweakGunRes
const std::string& GetGrappleHitParticle() const { return m_grappleHit; }
const std::string& GetGrappleMuzzleParticle() const { return m_grappleMuzzle; }
const std::string& GetGrappleSwooshParticle() const { return m_grappleSwoosh; }
CTweakGunRes() = default;
CTweakGunRes(athena::io::IStreamReader& in) { read(in); }
};
}