From 6142bb4f2d8d85482adf28f2abd2c0ca155a2403 Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Sun, 24 Mar 2019 10:14:55 -0400 Subject: [PATCH] Add new CheckBoxPartiallyInPVS func to IVEngineServer. --- public/eiface.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/eiface.h b/public/eiface.h index 91211354..d41def58 100644 --- a/public/eiface.h +++ b/public/eiface.h @@ -143,6 +143,8 @@ public: virtual bool CheckOriginInPVS( const Vector &org, const unsigned char *checkpvs, int checkpvssize ) = 0; // Check whether the specified worldspace bounding box is inside the specified PVS virtual bool CheckBoxInPVS( const Vector &mins, const Vector &maxs, const unsigned char *checkpvs, int checkpvssize ) = 0; + // Check whether the specified worldspace bounding box is partially inside the specified PVS + virtual bool CheckBoxPartiallyInPVS( const Vector &mins, const Vector &maxs, const unsigned char *checkpvs, int checkpvssize ) = 0; // Returns the server assigned userid for this player. Useful for logging frags, etc. // returns -1 if the edict couldn't be found in the list of players.