mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-27 05:47:37 -06:00
12 lines
149 B
C
12 lines
149 B
C
|
#ifndef MAIN_H
|
||
|
#define MAIN_H
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef struct {
|
||
|
char * name;
|
||
|
uint8_t button_count;
|
||
|
uint8_t axis_count;
|
||
|
} Joystick;
|
||
|
|
||
|
#endif
|