mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
19 lines
278 B
C
19 lines
278 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
uint8_t vibro_touch_level;
|
|
} InputSettings;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void input_settings_load(InputSettings* settings);
|
|
void input_settings_save(const InputSettings* settings);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|