2022-11-27 14:20:07 -05:00
|
|
|
#pragma once
|
|
|
|
|
2023-03-05 08:14:47 -05:00
|
|
|
namespace Components::GSC
|
2022-11-27 14:20:07 -05:00
|
|
|
{
|
|
|
|
class ScriptPatches : public Component
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScriptPatches();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static Game::game_hudelem_s* HECmd_GetHudElem(Game::scr_entref_t entref);
|
2022-11-29 09:18:10 -05:00
|
|
|
|
|
|
|
static void Scr_TableLookupIStringByRow_Hk();
|
2022-11-27 14:20:07 -05:00
|
|
|
};
|
|
|
|
}
|