2023-10-03 17:23:56 +03:00
|
|
|
|
//======= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ======//
|
2020-04-22 12:56:21 -04:00
|
|
|
|
//
|
|
|
|
|
// Purpose: Rumble effects mixer for XBox
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
#pragma once
|
|
|
|
|
#ifndef C_RUMBLE_H
|
|
|
|
|
#define C_RUMBLE_H
|
|
|
|
|
|
2023-10-03 17:23:56 +03:00
|
|
|
|
extern void RumbleEffect( int userID, unsigned char effectIndex, unsigned char rumbleData, unsigned char rumbleFlags );
|
|
|
|
|
extern void UpdateRumbleEffects( int userID );
|
|
|
|
|
extern void UpdateScreenShakeRumble( int userID, float shake, float balance = 0 );
|
|
|
|
|
extern void EnableRumbleOutput( int userID, bool bEnable );
|
|
|
|
|
extern void StopAllRumbleEffects( int userID );
|
2020-04-22 12:56:21 -04:00
|
|
|
|
|
|
|
|
|
#endif//C_RUMBLE_H
|
|
|
|
|
|