mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-23 15:52:55 +01:00
Starting work on colour schemes config settings
This commit is contained in:
13
src/config.h
13
src/config.h
@@ -24,6 +24,7 @@
|
||||
#include "common.h"
|
||||
#include "localisation/currency.h"
|
||||
#include "platform/platform.h"
|
||||
#include "interface/colour_schemes.h"
|
||||
|
||||
enum {
|
||||
CONFIG_FLAG_ALWAYS_SHOW_GRIDLINES = (1 << 0),
|
||||
@@ -175,7 +176,13 @@ typedef struct {
|
||||
} twitch_configuration;
|
||||
|
||||
typedef struct {
|
||||
uint8 window_palettes[][6];
|
||||
window_colours *colour_schemes;
|
||||
char *name;
|
||||
} colour_schemes_setting;
|
||||
|
||||
typedef struct {
|
||||
colour_schemes_setting *presets;
|
||||
uint16 num_presets;
|
||||
} colour_schemes_configuration;
|
||||
|
||||
typedef struct {
|
||||
@@ -204,4 +211,8 @@ bool config_shortcut_keys_save();
|
||||
|
||||
bool config_find_or_browse_install_directory();
|
||||
|
||||
void colour_schemes_set_default();
|
||||
bool colour_schemes_open_default();
|
||||
bool colour_schemes_save_default();
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user