mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 07:00:53 +01:00
9 lines
367 B
C++
9 lines
367 B
C++
|
|
#include "AIProcess.h"
|
||
|
|
|
||
|
|
void AIProcess::KnockExplosion(Actor* apActor, const NiPoint3* aSourceLocation, float afMagnitude)
|
||
|
|
{
|
||
|
|
TP_THIS_FUNCTION(TKnockExplosion, void, AIProcess, Actor*, const NiPoint3*, float);
|
||
|
|
POINTER_SKYRIMSE(TKnockExplosion, knockExplosion, 39895);
|
||
|
|
TiltedPhoques::ThisCall(knockExplosion, this, apActor, aSourceLocation, afMagnitude);
|
||
|
|
}
|