summaryrefslogtreecommitdiff
path: root/src/holder.c
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-10-12 16:07:05 -0400
committerLouie S <louie@example.com>2023-10-12 16:07:05 -0400
commit3c6cf0ed9980990ca07f6d76817814979691d65e (patch)
treebf11a53332f67b87ba6c05384eaa11cca486deb1 /src/holder.c
parent91da624fe1665f3ddb3216ebb8a56a982074228d (diff)
Pickup displaying
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;
-}