Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.3 KiB

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef PASSTIME_CONVARS_H
  8. #define PASSTIME_CONVARS_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "convar.h"
  13. extern ConVar
  14. tf_passtime_scores_per_round,
  15. tf_passtime_ball_damping_scale,
  16. tf_passtime_ball_drag_coefficient,
  17. tf_passtime_ball_inertia_scale,
  18. tf_passtime_ball_mass,
  19. tf_passtime_ball_model,
  20. tf_passtime_ball_reset_time,
  21. tf_passtime_ball_rotdamping_scale,
  22. tf_passtime_ball_seek_range,
  23. tf_passtime_ball_seek_speed_factor,
  24. tf_passtime_ball_sphere_collision,
  25. tf_passtime_ball_sphere_radius,
  26. tf_passtime_ball_takedamage,
  27. tf_passtime_ball_takedamage_force,
  28. tf_passtime_flinch_boost,
  29. tf_passtime_mode_homing_lock_sec,
  30. tf_passtime_mode_homing_speed,
  31. tf_passtime_overtime_idle_sec,
  32. tf_passtime_player_reticles_enemies,
  33. tf_passtime_player_reticles_friends,
  34. tf_passtime_score_crit_sec,
  35. tf_passtime_speedboost_on_get_ball_time,
  36. tf_passtime_steal_on_melee,
  37. tf_passtime_teammate_steal_time,
  38. tf_passtime_throwarc_scout,
  39. tf_passtime_throwarc_sniper,
  40. tf_passtime_throwarc_soldier,
  41. tf_passtime_throwarc_demoman,
  42. tf_passtime_throwarc_medic,
  43. tf_passtime_throwarc_heavy,
  44. tf_passtime_throwarc_pyro,
  45. tf_passtime_throwarc_spy,
  46. tf_passtime_throwarc_engineer,
  47. tf_passtime_throwspeed_scout,
  48. tf_passtime_throwspeed_sniper,
  49. tf_passtime_throwspeed_soldier,
  50. tf_passtime_throwspeed_demoman,
  51. tf_passtime_throwspeed_medic,
  52. tf_passtime_throwspeed_heavy,
  53. tf_passtime_throwspeed_pyro,
  54. tf_passtime_throwspeed_spy,
  55. tf_passtime_throwspeed_engineer,
  56. tf_passtime_throwspeed_velocity_scale,
  57. tf_passtime_save_stats,
  58. tf_passtime_experiment_telepass,
  59. tf_passtime_experiment_autopass,
  60. tf_passtime_experiment_instapass_charge,
  61. tf_passtime_experiment_instapass,
  62. tf_passtime_powerball_decayamount,
  63. tf_passtime_powerball_decaysec,
  64. tf_passtime_powerball_decaysec_neutral,
  65. tf_passtime_powerball_passpoints,
  66. tf_passtime_powerball_threshold,
  67. tf_passtime_powerball_airtimebonus,
  68. tf_passtime_powerball_maxairtimebonus,
  69. tf_passtime_powerball_decay_delay,
  70. tf_passtime_pack_range,
  71. tf_passtime_pack_speed,
  72. tf_passtime_pack_hp_per_sec;
  73. enum class EPasstimeExperiment_Telepass {
  74. None,
  75. TeleportToCatcher,
  76. SwapWithCatcher,
  77. TeleportToCatcherMaintainPossession,
  78. };
  79. #endif // PASSTIME_CONVARS_H