diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-07-15 19:29:00 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-07-15 19:29:00 -0300 |
commit | a3f1ee5c57d7818eaa30c272dd97d1bbb06ca099 (patch) | |
tree | d35d396e515ce20df6b76cc3c461cd7d1ba4cbfb /modules/gdscript/gdscript.h | |
parent | f6ce73f7245fe9cc06d942ac4c8cec44a7252c5c (diff) | |
download | redot-engine-a3f1ee5c57d7818eaa30c272dd97d1bbb06ca099.tar.gz |
Global class names (and GDScript support for it)
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index a35b0a10d5..d1c57a0330 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -439,6 +439,11 @@ public: virtual void get_recognized_extensions(List<String> *p_extensions) const; + /* GLOBAL CLASSES */ + + virtual bool handles_global_class_type(const String &p_type) const; + virtual String get_global_class_name(const String &p_path, String *r_base_type = NULL) const; + GDScriptLanguage(); ~GDScriptLanguage(); }; |