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

22 lines
447 B
C++
Raw Normal View History

2022-06-04 04:56:14 -04:00
#pragma once
namespace Components
{
class UserInfo : public Component
{
public:
UserInfo();
static void ClearClientOverrides(int clientNum);
static void ClearAllOverrides();
2022-06-04 04:56:14 -04:00
private:
using userInfoMap = std::unordered_map<std::string, std::string>;
static std::unordered_map<int, userInfoMap> UserInfoOverrides;
static void SV_GetUserInfo_Stub(int index, char* buffer, int bufferSize);
static void AddScriptMethods();
};
}