summaryrefslogtreecommitdiff
path: root/game/shared/tf2/tf_reconvars.h
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/shared/tf2/tf_reconvars.h
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'game/shared/tf2/tf_reconvars.h')
-rw-r--r--game/shared/tf2/tf_reconvars.h31
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