diff options
author | Louie Shprung <lshprung@tutanota.com> | 2024-08-13 21:06:03 -0400 |
---|---|---|
committer | Louie Shprung <lshprung@tutanota.com> | 2024-08-13 21:06:03 -0400 |
commit | b5dd0df1808429a3c0ed1f86256962512b8273f5 (patch) | |
tree | 51c145097dfbf3a730bd60cbc6c516962712ee18 /src/include/cache.h | |
parent | 4e68f637300c0e360d49f8f672d0675d42da0d1f (diff) |
Working implementation for lua config
Diffstat (limited to 'src/include/cache.h')
-rw-r--r-- | src/include/cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/cache.h b/src/include/cache.h index 894e4e1..701691f 100644 --- a/src/include/cache.h +++ b/src/include/cache.h @@ -1,6 +1,8 @@ #ifndef CACHE_H #define CACHE_H +#include <stdbool.h> + void save_to_cache(int g_count, int g_hover, int *e_hover, int *e_offset, int true_hover, char *cfg_name); void load_cache(int g_count, int *g_hover, int **e_hover, int **e_offset, int *true_hover, char *new_cfg_name); |