mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-14 13:37:38 +01:00
9 lines
181 B
C
9 lines
181 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void idz_shifter_reset(void);
|
||
|
void idz_shifter_update(bool shift_dn, bool shift_up);
|
||
|
uint8_t idz_shifter_current_gear(void);
|