aboutsummaryrefslogtreecommitdiff
path: root/core/script_language.h
diff options
context:
space:
mode:
authorJuan Linietsky2016-08-08 01:21:22 -0300
committerJuan Linietsky2016-08-08 01:21:22 -0300
commit9865650b43c2a924f5e3ed4ffdaac56c87328756 (patch)
treef32bb974d4ea39076d830f07ad163da8cae42b68 /core/script_language.h
parentcfbdeeffec74f9c8c8d7ddac9b31eb32c85ddf89 (diff)
downloadgodot-9865650b43c2a924f5e3ed4ffdaac56c87328756.tar.gz
godot-9865650b43c2a924f5e3ed4ffdaac56c87328756.tar.zst
godot-9865650b43c2a924f5e3ed4ffdaac56c87328756.zip
Diffstat (limited to 'core/script_language.h')
-rw-r--r--core/script_language.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/script_language.h b/core/script_language.h
index d1f82eff0..0e3f29879 100644
--- a/core/script_language.h
+++ b/core/script_language.h
@@ -98,6 +98,9 @@ public:
virtual void set_source_code(const String& p_code)=0;
virtual Error reload(bool p_keep_state=false)=0;
+ virtual bool has_method(const StringName& p_method) const=0;
+ virtual MethodInfo get_method_info(const StringName& p_method) const=0;
+
virtual bool is_tool() const=0;
virtual String get_node_type() const=0;