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

20 lines
451 B
C++
Raw Normal View History

2015-12-23 16:21:03 -05:00
namespace Components
{
class MusicalTalent : public Component
{
public:
MusicalTalent();
2016-08-15 10:40:30 -04:00
~MusicalTalent();
2016-09-16 05:04:28 -04:00
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
const char* getName() { return "MusicalTalent"; };
2016-08-15 10:40:30 -04:00
#endif
2015-12-23 16:21:03 -05:00
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);
2015-12-23 16:21:03 -05:00
};
}