iw4x-client/iw4/Components/MusicalTalent.hpp

16 lines
344 B
C++
Raw Normal View History

2015-12-23 16:21:03 -05:00
namespace Components
{
class MusicalTalent : public Component
{
public:
MusicalTalent();
~MusicalTalent();
static void Replace(std::string sound, const char* file);
private:
static std::map<std::string, const char*> SoundAliasList;
static Game::XAssetHeader ManipulateAliases(Game::XAssetType type, const char* filename);
};
}