diff options
Diffstat (limited to 'game/shared/tf2/tf_reconvars.h')
| -rw-r--r-- | game/shared/tf2/tf_reconvars.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/game/shared/tf2/tf_reconvars.h b/game/shared/tf2/tf_reconvars.h new file mode 100644 index 0000000..6d87840 --- /dev/null +++ b/game/shared/tf2/tf_reconvars.h @@ -0,0 +1,31 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef TF_RECONVARS_H +#define TF_RECONVARS_H +#pragma once + + +#include "techtree.h" + + +// Jetpack vars for each tech level. +class CReconJetpackLevel +{ +public: + float m_RechargeRate; // How fast the jetpack recharges. + float m_DepleteRate; // How fast the jetpack depletes. + float m_NegSnap; // When the jetpack is fully depleted, it snaps to this so the pilot sputters. + float m_MaxVerticalVel; // Fastest you can go upwards. + float m_AccelRate; // How fast it accelerates. +}; + + +extern CReconJetpackLevel g_ReconJetpackLevels[MAX_TF_TECHLEVELS]; + + +#endif // TF_RECONVARS_H |