diff options
Diffstat (limited to 'vphysics/physics_spring.h')
| -rw-r--r-- | vphysics/physics_spring.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vphysics/physics_spring.h b/vphysics/physics_spring.h new file mode 100644 index 0000000..a8921d3 --- /dev/null +++ b/vphysics/physics_spring.h @@ -0,0 +1,22 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef PHYSICS_SPRING_H +#define PHYSICS_SPRING_H +#pragma once + + +class IPhysicsSpring; +class IVP_Environment; +class IVP_Real_Object; + +struct springparams_t; + +IPhysicsSpring *CreateSpring( IVP_Environment *pEnvironment, CPhysicsObject *pObjectStart, CPhysicsObject *pObjectEnd, springparams_t *pParams ); + + +#endif // PHYSICS_SPRING_H |