summaryrefslogtreecommitdiff
path: root/src/holder.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/holder.c')
-rw-r--r--src/holder.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/holder.c b/src/holder.c
deleted file mode 100644
index d15f2cb..0000000
--- a/src/holder.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "holder.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;
-}