mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-01 11:59:26 +00:00
18 lines
397 B
C
18 lines
397 B
C
/* $Id$ */
|
|
|
|
/** @file settings_func.h Functions related to setting/changing the settings. */
|
|
|
|
#ifndef SETTINGS_FUNC_H
|
|
#define SETTINGS_FUNC_H
|
|
|
|
bool IConsoleSetPatchSetting(const char *name, int32 value);
|
|
void IConsoleGetPatchSetting(const char *name);
|
|
void IConsoleListPatches();
|
|
|
|
void LoadFromConfig();
|
|
void SaveToConfig();
|
|
void CheckConfig();
|
|
void UpdatePatches();
|
|
|
|
#endif /* SETTINGS_FUNC_H */
|