Remove unnecessary include

basetypes.h is now precompiled
This commit is contained in:
Amos 2022-01-16 01:40:27 +01:00
parent b9af86b9c1
commit 381b97eb65
26 changed files with 0 additions and 26 deletions

View File

@ -5,7 +5,6 @@
//=============================================================================//
#include "core/stdafx.h"
#include "tier0/basetypes.h"
#include "client/IVEngineClient.h"
//#ifdef GAMEDLL_S3

View File

@ -1,6 +1,5 @@
#include "core/stdafx.h"
/*****************************************************************************/
#include "tier0/basetypes.h"
#include "tier0/IConVar.h"
#include "tier0/cvar.h"
#include "tier0/commandline.h"

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
enum class ClientFrameStage_t : int
{

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
#include "server/IVEngineServer.h"
//-----------------------------------------------------------------------------

View File

@ -3,7 +3,6 @@
*-----------------------------------------------------------------------------*/
#include "core/stdafx.h"
#include "tier0/basetypes.h"
#include "common/opcodes.h"
#include "engine/host_cmd.h"
#include "materialsystem/materialsystem.h"

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
namespace
{

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
#include "tier0/completion.h"
#include "public/include/utility.h"

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
#include "engine/debugoverlay.h"
namespace

View File

@ -1,5 +1,4 @@
#include "core/stdafx.h"
#include "tier0/basetypes.h"
#include "engine/host_cmd.h"
// TODO: this file is for when dedicated is stable, to move hardcoded patches in Host_Init for a more dynamic solution.

View File

@ -1,6 +1,5 @@
#pragma once
#include "core/stdafx.h"
#include "tier0/basetypes.h"
#include "common/protocol.h"
#include "client/client.h"

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
#include "tier0/interface.h"
class CEngineAPI

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
namespace
{

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
#define JOYSTICK_BUTTON_INTERNAL( _joystick, _button ) ( JOYSTICK_FIRST_BUTTON + ((_joystick) * JOYSTICK_MAX_BUTTON_COUNT) + (_button) )
#define JOYSTICK_POV_BUTTON_INTERNAL( _joystick, _button ) ( JOYSTICK_FIRST_POV_BUTTON + ((_joystick) * JOYSTICK_POV_BUTTON_COUNT) + (_button) )

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
namespace
{

View File

@ -2,7 +2,6 @@
//
#include "core/stdafx.h"
#include "tier0/basetypes.h"
#include "tier0/cvar.h"
#include "engine/sys_utils.h"
#include "networksystem/r5net.h"

View File

@ -1,5 +1,4 @@
#include "core/stdafx.h"
#include "tier0/basetypes.h"
#include "engine/host_cmd.h"
#include "engine/sys_utils.h"
#include "rtech/rtech_game.h"

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
namespace
{

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
#include "networksystem/r5net.h"
struct user_creds

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
namespace
{

View File

@ -6,7 +6,6 @@
#include "core/stdafx.h"
#include "core/logdef.h"
#include "tier0/basetypes.h"
#include "tier0/cvar.h"
#include "tier0/IConVar.h"
#include "tier0/commandline.h"

View File

@ -1,5 +1,4 @@
#pragma once
#include "basetypes.h"
#include "ConCommand.h"
#include "mathlib/color.h"

View File

@ -6,7 +6,6 @@
#include "core/stdafx.h"
#include "windows/id3dx.h"
#include "tier0/basetypes.h"
#include "tier0/cvar.h"
#include "tier0/IConVar.h"
#include "tier0/completion.h"

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
#include "tier0/IConVar.h"
namespace

View File

@ -1,6 +1,5 @@
#pragma once
#include "core/stdafx.h"
#include "tier0/basetypes.h"
#include "mathlib/color.h"
enum class LogType_t : int

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
namespace
{

View File

@ -1,5 +1,4 @@
#pragma once
#include "tier0/basetypes.h"
#define MAKE_3_BYTES_FROM_1_AND_2( x1, x2 ) (( (( std::uint16_t )x2) << 8 ) | (std::uint8_t)(x1))
extern std::vector<std::string> g_szAllPlaylists;