diff options
Diffstat (limited to 'core/os/os.h')
| -rw-r--r-- | core/os/os.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/core/os/os.h b/core/os/os.h index c6ea9d869a..0428f6df2a 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -120,6 +120,7 @@ public:  	void print_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify = false, Logger::ErrorType p_type = Logger::ERR_ERROR);  	void print(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3; +	void print_rich(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3;  	void printerr(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3;  	virtual String get_stdin_string(bool p_block = true) = 0; @@ -159,6 +160,7 @@ public:  	virtual String get_name() const = 0;  	virtual List<String> get_cmdline_args() const { return _cmdline; } +	virtual List<String> get_cmdline_platform_args() const { return List<String>(); }  	virtual String get_model_name() const;  	bool is_layered_allowed() const { return _allow_layered; }  |