aboutsummaryrefslogtreecommitdiff
path: root/modules/mono/csharp_script.h
diff options
context:
space:
mode:
authorRémi Verschelde2018-01-04 21:50:04 +0100
committerGitHub2018-01-04 21:50:04 +0100
commit0f8ac21592dd2569bf03c97b9d7744ff51be6342 (patch)
treeb875ba769871e5ac38ff1646f5f19a8c767a4fed /modules/mono/csharp_script.h
parentdb3f87d49171024cce3757c102db7de55b5b2c8c (diff)
parent119a910bc6b7472f014773997bc036a461b44a38 (diff)
downloadgodot-0f8ac21592dd2569bf03c97b9d7744ff51be6342.tar.gz
godot-0f8ac21592dd2569bf03c97b9d7744ff51be6342.tar.zst
godot-0f8ac21592dd2569bf03c97b9d7744ff51be6342.zip
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r--modules/mono/csharp_script.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h
index 27e68a7a5..f18daacf9 100644
--- a/modules/mono/csharp_script.h
+++ b/modules/mono/csharp_script.h
@@ -104,6 +104,8 @@ class CSharpScript : public Script {
void _clear();
bool _update_exports();
+ bool _get_member_export(GDMonoClass *p_class, GDMonoClassMember *p_member, PropertyInfo &r_prop_info, bool &r_exported);
+
CSharpInstance *_create_instance(const Variant **p_args, int p_argcount, Object *p_owner, bool p_isref, Variant::CallError &r_error);
Variant _new(const Variant **p_args, int p_argcount, Variant::CallError &r_error);
@@ -178,6 +180,8 @@ class CSharpInstance : public ScriptInstance {
void _call_multilevel(MonoObject *p_mono_object, const StringName &p_method, const Variant **p_args, int p_argcount);
+ RPCMode _member_get_rpc_mode(GDMonoClassMember *p_member) const;
+
public:
MonoObject *get_mono_object() const;