mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-10-30 21:20:10 +00:00
db2a803cf7
NO_OVERLAY define becomes EMU_OVERLAY which enables the overlay instead of disabling it. disable_overlay.txt moved to steam_settings.
36 lines
536 B
C++
36 lines
536 B
C++
#include "../dll/dll.h"
|
|
#include "Hook_Manager.h"
|
|
|
|
#ifdef EMU_OVERLAY
|
|
|
|
Hook_Manager::Hook_Manager()
|
|
{}
|
|
|
|
Hook_Manager::~Hook_Manager()
|
|
{
|
|
for (auto& i : _hooks)
|
|
delete i;
|
|
}
|
|
|
|
Hook_Manager& Hook_Manager::Inst()
|
|
{
|
|
static Hook_Manager hook;
|
|
return hook;
|
|
}
|
|
|
|
void Hook_Manager::AddHook(Base_Hook* hook)
|
|
{
|
|
_hooks.insert(hook);
|
|
}
|
|
|
|
void Hook_Manager::RemoveHook(Base_Hook* hook)
|
|
{
|
|
auto it = _hooks.find(hook);
|
|
if (it != _hooks.end())
|
|
{
|
|
delete hook;
|
|
_hooks.erase(it);
|
|
}
|
|
}
|
|
|
|
#endif//EMU_OVERLAY
|