diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-09-21 09:39:46 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-09-21 09:39:46 -0300 |
commit | ce6fefced8b0ac6d3be886db5ee1234dba7ec544 (patch) | |
tree | e5279ee0312324455e5e560b5bf2dfa663103ccb /core/bind/core_bind.h | |
parent | 8f07f243183136d141562f19321ca45246d597f9 (diff) |
Properly implement OS.alert() from script, and use xmessage on X11
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r-- | core/bind/core_bind.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index ed3db29259..24ea810767 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -256,6 +256,9 @@ public: String get_data_dir() const; + void alert(const String& p_alert,const String& p_title="ALERT!"); + + void set_screen_orientation(ScreenOrientation p_orientation); ScreenOrientation get_screen_orientation() const; |