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.

30 lines
572 B

  1. class bik_vs11_Static_Index
  2. {
  3. public:
  4. bik_vs11_Static_Index()
  5. {
  6. }
  7. int GetIndex()
  8. {
  9. // Asserts to make sure that we aren't using any skipped combinations.
  10. // Asserts to make sure that we are setting all of the combination vars.
  11. #ifdef _DEBUG
  12. #endif // _DEBUG
  13. return 0;
  14. }
  15. };
  16. class bik_vs11_Dynamic_Index
  17. {
  18. public:
  19. bik_vs11_Dynamic_Index()
  20. {
  21. }
  22. int GetIndex()
  23. {
  24. // Asserts to make sure that we aren't using any skipped combinations.
  25. // Asserts to make sure that we are setting all of the combination vars.
  26. #ifdef _DEBUG
  27. #endif // _DEBUG
  28. return 0;
  29. }
  30. };