From 04ebf294f36eeae859b33299f29ca4dd7c0cf7c1 Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Fri, 24 May 2019 00:40:16 +0200 Subject: C#: Implement ScriptInstance::to_string Create a blacklist of methods that must not be generated. Includes: "to_string", "_to_string" and "_init". --- modules/mono/csharp_script.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/mono/csharp_script.h') diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 298d55c4df..e735e0f741 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -261,6 +261,8 @@ public: virtual void notification(int p_notification); void _call_notification(int p_notification); + virtual String to_string(bool *r_valid); + virtual Ref