blob: e1306d34a6c73c8167f0c1ecd064d33210527391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef HOLDER_H
#define HOLDER_H
#include <stdbool.h>
extern int hover;
void hover_move_right();
void hover_move_left();
typedef struct holder {
bool rings[3];
} Holder;
#endif
|