mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
35 lines
725 B
C
35 lines
725 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
// system
|
|
#include <stdio.h>
|
|
#ifdef _XBOX
|
|
#include <ctype.h>
|
|
#endif
|
|
|
|
// Valve
|
|
#include "tier0/dbg.h"
|
|
#include "mathlib/mathlib.h"
|
|
#include "mathlib/vector.h"
|
|
#include "utlvector.h"
|
|
#include "convert.h"
|
|
#include "commonmacros.h"
|
|
|
|
// vphysics
|
|
#include "vphysics_interface.h"
|
|
#include "vphysics_saverestore.h"
|
|
#include "vphysics_internal.h"
|
|
#include "physics_material.h"
|
|
#include "physics_environment.h"
|
|
#include "physics_object.h"
|
|
|
|
// ivp
|
|
#include "ivp_physics.hxx"
|
|
#include "ivp_core.hxx"
|
|
#include "ivp_templates.hxx"
|
|
|
|
// havok
|