diff options
Diffstat (limited to 'TestDLL/HuntClasses.h')
-rw-r--r-- | TestDLL/HuntClasses.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/TestDLL/HuntClasses.h b/TestDLL/HuntClasses.h index 692ad1d..2692a3e 100644 --- a/TestDLL/HuntClasses.h +++ b/TestDLL/HuntClasses.h @@ -957,4 +957,11 @@ static inline bool WorldToScreen(SSystemGlobalEnvironment* globalEnv, Vec3 vEntP vOut.z *= 1.0f; return ((vOut.z < 1.0f) && (vOut.x > 0) && (vOut.x < (float)Renderer->GetWidth()) && (vOut.y > 0) && (vOut.y < (float)Renderer->GetHeight())); -}
\ No newline at end of file +} + + +struct HuntCtx { + IEntitySystem ** ppEntSys; + SSystemGlobalEnvironment ** ppGlobalEnv; + IActorSystem ** ppCCryAction; +};
\ No newline at end of file |