summaryrefslogtreecommitdiff
path: root/src/tower.c
blob: 9220db2e51c6fad95758677d28c9de1de6bd603c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "tower.h"

int hover_max = 2;

void hover_move_right() {
	++hover;
	if(hover > hover_max) hover = hover_max;
}

void hover_move_left() {
	--hover;
	if(hover < 0) hover = 0;
}