diff options
author | Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com> | 2019-05-24 01:24:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-24 01:24:22 +0200 |
commit | a46b8e1ebfa0ef97c1fba046c6f2d975973c9401 (patch) | |
tree | 365a58a6b9f4bccb4f4e6329d913819d4440e11a /modules/mono/csharp_script.h | |
parent | 9738ed567cb9b75e11af3d7c361a2d77e60a5753 (diff) | |
parent | 04ebf294f36eeae859b33299f29ca4dd7c0cf7c1 (diff) |
Merge pull request #29140 from neikeq/to_string_impl
C#: Implement ScriptInstance::to_string
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r-- | modules/mono/csharp_script.h | 2 |
1 files changed, 2 insertions, 0 deletions
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<Script> get_script() const; virtual ScriptLanguage *get_language(); |