summaryrefslogtreecommitdiff
path: root/src/tower.h
blob: 6fed8cdcb987073775df7a517ffec98b66e18546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TOWER_H
#define TOWER_H

#include <stdbool.h>

typedef struct tower {
	bool rings[3];
} Tower;

extern Tower towers[3];
extern int hover;

void hover_move_right();
void hover_move_left();

#endif