jsfw/main.h

12 lines
149 B
C
Raw Normal View History

2022-08-27 19:29:43 -05:00
#ifndef MAIN_H
#define MAIN_H
#include <stdint.h>
typedef struct {
char * name;
uint8_t button_count;
uint8_t axis_count;
} Joystick;
#endif