diff options
Diffstat (limited to '')
-rw-r--r-- | source/Plugin.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/Plugin.cpp b/source/Plugin.cpp index 7a22f803e..427c30a69 100644 --- a/source/Plugin.cpp +++ b/source/Plugin.cpp @@ -2,6 +2,7 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Plugin.h" +#include "Pawn.h" @@ -228,10 +229,11 @@ bool cPlugin::OnPreCrafting(const cPlayer * a_Player, const cCraftingGrid * a_Gr -void cPlugin::OnTakeDamage(cPawn * a_Pawn, TakeDamageInfo * a_TakeDamageInfo) +bool cPlugin::OnTakeDamage(cPawn & a_Pawn, TakeDamageInfo & a_TakeDamageInfo) { UNUSED(a_Pawn); UNUSED(a_TakeDamageInfo); + return false; } |