L L4D2node

CFishPool::~CFishPool

0x006a71a0 · 166 bytes · __thiscall

_ZN9CFishPoolD0Ev

Decompiled

undefined (1 param)

/* CFishPool::~CFishPool() */

void __thiscall CFishPool::~CFishPool(CFishPool *this)

{
  void *in_stack_00000008;
  
  *(undefined ***)this = &PTR__CFishPool_00c879c8;
  *(undefined ***)(this + 0x440) = &PTR__CFishPool_00c87cf8;
  *(undefined4 *)(this + 0x46c) = 0;
  CUtlMemory<CHandle<CFish>,int>::Purge((CUtlMemory<CHandle<CFish>,int> *)(this + 0x460));
  *(undefined4 *)(this + 0x470) = *(undefined4 *)(this + 0x460);
  CUtlMemory<CHandle<CFish>,int>::Purge((CUtlMemory<CHandle<CFish>,int> *)(this + 0x460));
  *(undefined ***)(this + 0x440) = &PTR__CGameEventListener_00bfb6e8;
  *(undefined4 *)(this + 0x444) = 0xd;
  if (this[0x448] != (CFishPool)0x0) {
    if (gameeventmanager != (int *)0x0) {
      (**(code **)(*gameeventmanager + 0x18))(gameeventmanager,this + 0x440);
    }
    this[0x448] = (CFishPool)0x0;
  }
  *(undefined ***)(this + 0x440) = &PTR__IGameEventListener2_00bfb610;
  CBaseEntity::~CBaseEntity((CBaseEntity *)this);
  CBaseEntity::operator_delete((CBaseEntity *)this,in_stack_00000008);
  return;
}

SourceMod gamedata

paste into addons/sourcemod/gamedata/<your_plugin>.txt
used as the SourceMod key — change to fit your plugin's convention
SourceMod library name (server / engine / matchmaking)

Just a Signatures{} block, ready to drop into a gamedata file. Wire it up in your plugin however you like - SDKCall, DHooks, raw memory ops, or anything else.



        

        

          

Type inference is best-effort from the C signature - sanity-check the DHooks types before shipping.

Return-type handling cheatsheet (DHookReturn)