From 0905e8a48f61d3b0127d5638ee7f48d9ee69ecef Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Thu, 23 Aug 2012 07:31:57 -0400 Subject: [PATCH] Typo fix, added forward decl for bbox_t; --- public/eiface.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/eiface.h b/public/eiface.h index ed42bc99..3fbf5ed5 100644 --- a/public/eiface.h +++ b/public/eiface.h @@ -72,6 +72,8 @@ typedef struct player_info_s player_info_t; #define INTERFACEVERSION_VENGINESERVER "VEngineServer021" +struct bbox_t; + //----------------------------------------------------------------------------- // Purpose: Interface the engine exposes to the game DLL //----------------------------------------------------------------------------- @@ -390,7 +392,7 @@ public: virtual const CSteamID *GetClientSteamIDByPlayerIndex( int index ) = 0; virtual int GetClusterCount() = 0; - virtual int GetAllClusterBounds( bbox_t *pBoxes, int maxboxes ) = ; + virtual int GetAllClusterBounds( bbox_t *pBoxes, int maxboxes ) = 0; virtual edict_t *CreateFakeClientEx( const char *netname, bool bUnknown ) = 0; virtual int GetServerVersion() const = 0; virtual void *GetReplay() = 0;