Skip to content

Commit

Permalink
GetEntityInit typedef fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyShorokhov committed Oct 22, 2021
1 parent 30af88f commit 14ab361
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reapi/include/cssdk/engine/rehlds_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ typedef IHookChain<bool, IGameClient *, bool> IRehldsHook_SV_ShouldSendConsisten
typedef IHookChainRegistry<bool, IGameClient *, bool> IRehldsHookRegistry_SV_ShouldSendConsistencyList;

//GetEntityInit hook
typedef IHookChain<struct entvars_s *, char *> IRehldsHook_GetEntityInit;
typedef IHookChainRegistry<struct entvars_s *, char *> IRehldsHookRegistry_GetEntityInit;
typedef IHookChain<*(struct entvars_s *), char *> IRehldsHook_GetEntityInit;
typedef IHookChainRegistry<*(struct entvars_s *), char *> IRehldsHookRegistry_GetEntityInit;

class IRehldsHookchains {
public:
Expand Down

0 comments on commit 14ab361

Please sign in to comment.