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

35 lines
695 B
C++
Raw Normal View History

2016-01-12 19:29:22 -05:00
namespace Components
{
class StructuredData : public Component
{
public:
enum PlayerDataType
{
ENUM_FEATURES,
ENUM_WEAPONS,
ENUM_ATTACHEMENTS,
ENUM_CHALLENGES,
ENUM_CAMOS,
ENUM_PERKS,
ENUM_KILLSTREAKS,
ENUM_ACCOLADES,
ENUM_CARDICONS,
ENUM_CARDTITLES,
ENUM_CARDNAMEPLATES,
ENUM_TEAMS,
ENUM_GAMETYPES,
ENUM_MAX
};
2016-01-12 19:29:22 -05:00
StructuredData();
~StructuredData();
const char* GetName() { return "StructuredData"; };
private:
static void PatchPlayerDataEnum(Game::StructuredDataDef* data, PlayerDataType type, std::vector<std::string>& entries);
2016-06-08 11:28:58 -04:00
static Utils::Memory::Allocator MemAllocator;
2016-05-26 07:13:02 -04:00
static const char* EnumTranslation[ENUM_MAX];
2016-01-12 19:29:22 -05:00
};
}