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.

18 lines
563 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Rumble effects mixer for XBox
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. #pragma once
  9. #ifndef C_RUMBLE_H
  10. #define C_RUMBLE_H
  11. extern void RumbleEffect( unsigned char effectIndex, unsigned char rumbleData, unsigned char rumbleFlags );
  12. extern void UpdateRumbleEffects();
  13. extern void UpdateScreenShakeRumble( float shake, float balance = 0 );
  14. extern void EnableRumbleOutput( bool bEnable );
  15. #endif//C_RUMBLE_H