iw4x-client/src/Components/Modules/MusicalTalent.hpp

20 lines
468 B
C++
Raw Normal View History

namespace Components
{
class MusicalTalent : public Component
{
public:
MusicalTalent();
2016-08-15 10:40:30 -04:00
~MusicalTalent();
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
const char* getName() { return "MusicalTalent"; };
#endif
static void Replace(std::string sound, const char* file);
private:
static std::map<std::string, const char*> SoundAliasList;
static Game::XAssetHeader ModifyAliases(Game::XAssetType type, std::string filename);
};
}