#pragma once #include #include class VmtHook { private: void** vmt = nullptr; std::map hookedfuncs; public: VmtHook(void** vmt); void* Hook(int index, void* hookedFunction); bool Unhook(int index); void Unhook(); };