Plugins agregados

This commit is contained in:
2026-03-30 15:33:19 -06:00
parent df2b257d93
commit eefc67e50a
766 changed files with 107667 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#pragma once
#include <cstdint>
namespace Ship {
class GlobalSDLDeviceSettings {
public:
GlobalSDLDeviceSettings();
~GlobalSDLDeviceSettings();
int32_t GetStickAxisThresholdPercentage();
void SetStickAxisThresholdPercentage(int32_t stickAxisThresholdPercentage);
int32_t GetTriggerAxisThresholdPercentage();
void SetTriggerAxisThresholdPercentage(int32_t triggerAxisThresholdPercentage);
void SaveToConfig();
void EraseFromConfig();
private:
int32_t mStickAxisThresholdPercentage;
int32_t mTriggerAxisThresholdPercentage;
};
} // namespace Ship