Fumofumotris/rewrite/c/controller.h
2024-05-24 00:36:13 -05:00

18 lines
242 B
C

#include "fumocommon.h"
#include "input.h"
struct Controller {
struct {
u32 *v_codes;
struct InputVBind **v_bind_ptrs;
usize n;
} map;
struct InputVAxis *v_axes;
struct InputVBind *v_binds;
usize v_axes_n;
usize v_binds_n;
};