mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Fix wrong method binds and registered class
(cherry picked from commit 2f3328a039)
This commit is contained in:
committed by
Hein-Pieter van Braam-Stewart
parent
cab4921477
commit
39f1a110a1
@@ -249,6 +249,11 @@ void ClassDB::set_current_api(APIType p_api) {
|
||||
current_api = p_api;
|
||||
}
|
||||
|
||||
ClassDB::APIType ClassDB::get_current_api() {
|
||||
|
||||
return current_api;
|
||||
}
|
||||
|
||||
HashMap<StringName, ClassDB::ClassInfo> ClassDB::classes;
|
||||
HashMap<StringName, StringName> ClassDB::resource_base_extensions;
|
||||
HashMap<StringName, StringName> ClassDB::compat_classes;
|
||||
|
||||
@@ -371,6 +371,7 @@ public:
|
||||
static void init();
|
||||
|
||||
static void set_current_api(APIType p_api);
|
||||
static APIType get_current_api();
|
||||
static void cleanup();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user