blob: a8921d3126028e3d13ed7f873a9a2ace5755e57f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|