summaryrefslogtreecommitdiff
path: root/src/include/cache.h
blob: 894e4e16883d08ec7cc0ad58ab9c21f29e86e815 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef CACHE_H
#define CACHE_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);

char *get_cache_path(bool create);

#endif