summaryrefslogtreecommitdiffstats
path: root/core/os/os.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-06-28 23:35:53 +0200
committerGitHub <noreply@github.com>2022-06-28 23:35:53 +0200
commitb730d2ee09a8fdc4eaa44efe9afc083d907f80c3 (patch)
tree0ed1a5563e639656ccc63749a2f53add1733965d /core/os/os.h
parent0cd049e4112ab8d4ee2ebd6869d114bdf754c3bb (diff)
parentc6291bcd8a49055ce2158f88759a487de5b8d1bd (diff)
downloadredot-engine-b730d2ee09a8fdc4eaa44efe9afc083d907f80c3.tar.gz
Merge pull request #60675 from voylin/Add-BBCode-support-for-printing-output
Adding print_rich() for printing with BBCode
Diffstat (limited to 'core/os/os.h')
-rw-r--r--core/os/os.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/os/os.h b/core/os/os.h
index c6ea9d869a..af6c38cbe0 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;