mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
30 lines
852 B
C++
30 lines
852 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
|
|
#if !defined(_STATIC_LINKED) || defined(_SHARED_LIB)
|
|
|
|
#include "basetypes.h"
|
|
#include "mathlib/vmatrix.h"
|
|
#include "mathlib/mathlib.h"
|
|
#include <string.h>
|
|
#include "mathlib/vector4d.h"
|
|
#include "tier0/dbg.h"
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
#include "tier0/memdbgon.h"
|
|
|
|
#pragma warning (disable : 4700) // local variable 'x' used without having been initialized
|
|
|
|
// ------------------------------------------------------------------------------------------- //
|
|
// Helper functions.
|
|
// ------------------------------------------------------------------------------------------- //
|
|
|
|
|
|
#endif // !_STATIC_LINKED || _SHARED_LIB
|
|
|