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
18 lines
563 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: Rumble effects mixer for XBox |
|
// |
|
// $NoKeywords: $ |
|
// |
|
//=============================================================================// |
|
#pragma once |
|
#ifndef C_RUMBLE_H |
|
#define C_RUMBLE_H |
|
|
|
extern void RumbleEffect( unsigned char effectIndex, unsigned char rumbleData, unsigned char rumbleFlags ); |
|
extern void UpdateRumbleEffects(); |
|
extern void UpdateScreenShakeRumble( float shake, float balance = 0 ); |
|
extern void EnableRumbleOutput( bool bEnable ); |
|
|
|
#endif//C_RUMBLE_H |
|
|
|
|