From 9875aaebf2d44c3f38be3c72b0c9c0af9422f8cc Mon Sep 17 00:00:00 2001
From: louie <lshprung@yahoo.com>
Date: Tue, 29 Dec 2020 17:09:17 -0800
Subject: Added menu location caching

---
 include/cache.h | 8 ++++++++
 1 file changed, 8 insertions(+)
 create mode 100644 include/cache.h

(limited to 'include')

diff --git a/include/cache.h b/include/cache.h
new file mode 100644
index 0000000..b3f0adb
--- /dev/null
+++ b/include/cache.h
@@ -0,0 +1,8 @@
+#ifndef CACHE_H
+#define CACHE_H
+
+void save_to_cache(int g_hover, int e_hover, int true_hover, char *cfg_name);
+
+void load_cache(int *g_hover, int *e_hover, int *true_hover, char *new_cfg_name);
+
+#endif
-- 
cgit