(svn r18943) -Feature [FS#2885]: make it possible to change newgame settings from within a game via the console (use setting_newgame instead of setting)

This commit is contained in:
yexo
2010-01-28 23:17:28 +00:00
parent fa01b25f74
commit d75b9f1642
4 changed files with 37 additions and 8 deletions

View File

@@ -15,9 +15,9 @@
#include "core/smallvec_type.hpp"
#include "company_type.h"
void IConsoleSetSetting(const char *name, const char *value);
void IConsoleSetSetting(const char *name, const char *value, bool force_newgame = false);
void IConsoleSetSetting(const char *name, int32 value);
void IConsoleGetSetting(const char *name);
void IConsoleGetSetting(const char *name, bool force_newgame = false);
void IConsoleListSettings(const char *prefilter);
void LoadFromConfig();