Mercurial > wgsdk
view src/include/config.h @ 0:d91dfd53b8b4
Initial commit
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 07 Aug 2022 07:26:27 -0400 |
parents | |
children | 7abb5d8b20ea |
line wrap: on
line source
#ifndef __config_h #define __config_h struct config_t { int display_title; int show_elapsed_time; }; int cfg_load(struct config_t* config); int cfg_save(struct config_t config); #endif