mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 20:31:21 +00:00
16 lines
270 B
C++
16 lines
270 B
C++
#include "CRumbleManager.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
void CRumbleManager::SetDisabled(bool disabled)
|
|
{
|
|
if (disabled)
|
|
x0_rumbleGenerator.HardStopAll();
|
|
xf0_24_disabled = disabled;
|
|
}
|
|
|
|
void CRumbleManager::Update(float dt) { x0_rumbleGenerator.Update(dt); }
|
|
|
|
}
|