Fix gcc build errors & warnings

This commit is contained in:
Alexander 'z33ky' Hirsch
2021-04-25 22:00:08 +02:00
parent 5eda2f692f
commit dddcf642aa
13 changed files with 91 additions and 70 deletions

View File

@@ -6,14 +6,14 @@
//
//===========================================================================//
#include "cbase.h"
#include "ai_criteria.h"
#include "AI_Criteria.h"
#ifdef GAME_DLL
#include "ai_speech.h"
#endif
#include <keyvalues.h>
#include "engine/ienginesound.h"
#include <KeyValues.h>
#include "engine/IEngineSound.h"
// memdbgon must be the last include file in a .cpp file!!!
#include <tier0/memdbgon.h>

View File

@@ -6,11 +6,11 @@
#include "cbase.h"
#include "soundemittersystem/isoundemittersystembase.h"
#include "ai_responsesystem.h"
#include "SoundEmitterSystem/isoundemittersystembase.h"
#include "AI_ResponseSystem.h"
#include "igamesystem.h"
#include "ai_criteria.h"
#include <keyvalues.h>
#include "AI_Criteria.h"
#include <KeyValues.h>
#include "filesystem.h"
#include "utldict.h"
#ifdef GAME_DLL

View File

@@ -13,7 +13,7 @@
#pragma once
#endif
#include "ai_criteria.h"
#include "AI_Criteria.h"
#include "../../public/responserules/response_types.h"
// using ResponseRules::IResponseFilter;

View File

@@ -12,7 +12,7 @@
#pragma once
#endif
#include "../../public/responserules/response_types.h"
#include "responserules/response_types.h"
class CAI_Concept : public ResponseRules::CRR_Concept
{