summaryrefslogtreecommitdiff
path: root/include/cache.h
blob: 0f5a6c467413269593201cbfbe27e260db8ddb4c (plain)
1
2
3
4
5
6
7
8
9
10
#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);

char *get_cache_path(bool create);

#endif