diff options
Diffstat (limited to 'src/user/settings/model.h')
-rw-r--r-- | src/user/settings/model.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/user/settings/model.h b/src/user/settings/model.h new file mode 100644 index 0000000..0c9b1d2 --- /dev/null +++ b/src/user/settings/model.h @@ -0,0 +1,24 @@ +#ifndef MODEL_H +#define MODEL_H + +#include <raleigh/d/saving_window.h> +#include <structs/alist.h> + +union setting_data { + char *string; + _pixel_t color; +}; + +struct setting { + enum { + STRING, + COLOR + } kind; + union setting_data data; + const char *name; +}; + +extern alist<struct setting> settings; +extern raleigh::saving_window *main_w; + +#endif
\ No newline at end of file |