summaryrefslogtreecommitdiff
path: root/core/bind/core_bind.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-01-13 18:25:43 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-01-13 18:25:49 +0100
commitd2aae675e92cbe99706564e2cffbc34ed7cea639 (patch)
tree50258eae35ba32516ac4b7359fab0b39005d3133 /core/bind/core_bind.h
parentde8cc309d66641d52a6832ad65f26ce73378fb88 (diff)
Replace Engine version API by preexisting OS one
It outputs a single Dictionary with all relevant information as keys, that will less bloat the documentation and provide all details in one function call.
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r--core/bind/core_bind.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h
index 3401435c68..0774492f66 100644
--- a/core/bind/core_bind.h
+++ b/core/bind/core_bind.h
@@ -309,8 +309,6 @@ public:
void set_use_vsync(bool p_enable);
bool is_vsync_enabled() const;
- Dictionary get_engine_version() const;
-
static _OS *get_singleton() { return singleton; }
_OS();
@@ -647,15 +645,7 @@ public:
MainLoop *get_main_loop() const;
- String get_version() const;
- String get_version_name() const;
- String get_version_short_name() const;
- int get_version_major() const;
- int get_version_minor() const;
- String get_version_revision() const;
- String get_version_status() const;
- int get_version_year() const;
-
+ Dictionary get_version_info() const;
_Engine();
};