CPropBreakableWall::~CPropBreakableWall
0x00802c60 · 123 bytes · __thiscall
_ZN18CPropBreakableWallD0Ev
Decompiled
undefined (1 param)
/* CPropBreakableWall::~CPropBreakableWall() */
void __thiscall CPropBreakableWall::~CPropBreakableWall(CPropBreakableWall *this)
{
void *in_stack_00000008;
*(undefined ***)this = &PTR__CPropDoorRotatingBreakable_00cc5528;
*(undefined ***)(this + 0x13f4) = &PTR_SetDmgModBullet_00cc59f4;
*(undefined ***)(this + 0x13f8) = &PTR_OnAttemptPhysGunPickup_00cc5a98;
*(undefined **)(this + 0x154c) = &DAT_00cc5ac8;
*(undefined ***)(this + 0x15cc) = &PTR__CPropDoorRotatingBreakable_00cc5adc;
*(undefined4 *)(this + 0x17e4) = 0;
CUtlMemory<string_t,int>::Purge((CUtlMemory<string_t,int> *)(this + 0x17d8));
*(undefined4 *)(this + 0x17e8) = *(undefined4 *)(this + 0x17d8);
CUtlMemory<string_t,int>::Purge((CUtlMemory<string_t,int> *)(this + 0x17d8));
CPropDoorRotating::~CPropDoorRotating((CPropDoorRotating *)this);
CBaseEntity::operator_delete((CBaseEntity *)this,in_stack_00000008);
return;
}
SourceMod gamedata
paste intoaddons/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.
Signatures + Functions block. The plugin uses
DHookCreateFromConf - DHooks reads return type, this-type,
calling convention, and argument types straight from the gamedata. Less
boilerplate in the plugin, types travel with the gamedata.
Gamedata KeyValues
DHooks plugin example
Type inference is best-effort from the C signature - sanity-check the DHooks types before shipping.