mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
20 lines
476 B
C
20 lines
476 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef PHYSICS_VIRTUALMESH_H
|
|
#define PHYSICS_VIRTUALMESH_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
CPhysCollide *CreateVirtualMesh( const virtualmeshparams_t ¶ms );
|
|
void DestroyVirtualMesh( CPhysCollide *pSurf );
|
|
void DumpVirtualMeshStats();
|
|
void VirtualMeshPSI();
|
|
|
|
#endif // PHYSICS_VIRTUALMESH_H
|