mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-04 18:55:05 +00:00
15 lines
No EOL
411 B
C++
15 lines
No EOL
411 B
C++
#pragma once
|
|
|
|
namespace al {
|
|
struct PadRumbleParam {
|
|
inline PadRumbleParam() = default;
|
|
float mRumbleNear = 0.0f;
|
|
float mRumbleFar = 3000.0f;
|
|
float mRumbleVolume = 1.0f;
|
|
float mRumblePitchVol = 1.0f;
|
|
float mRumblePitchLeft = 1.0f;
|
|
float mRumblePitchRight = 1.0f;
|
|
int unk = 0;
|
|
bool isUseController = false;
|
|
};
|
|
} // namespace al
|