diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2018-02-22 15:34:08 +0100 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2018-08-23 01:38:48 +0200 |
commit | 908a30964a66884f0264021818531cc89c8d2b80 (patch) | |
tree | 96b74e1c22be61ed540f8746137f3a53032f4c28 /modules/mono/csharp_script.h | |
parent | 79a225ac2a2f2353f2f626809b56229397dfe52d (diff) | |
download | redot-engine-908a30964a66884f0264021818531cc89c8d2b80.tar.gz |
Notify instance binding data api of refcount increment/decrement
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 ffb1d2e0f4..b4fecfa912 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -345,6 +345,8 @@ public: // Don't use these. I'm watching you virtual void *alloc_instance_binding_data(Object *p_object); virtual void free_instance_binding_data(void *p_data); + virtual void refcount_incremented_instance_binding(Object *p_object); + virtual bool refcount_decremented_instance_binding(Object *p_object); #ifdef DEBUG_ENABLED Vector<StackInfo> stack_trace_get_info(MonoObject *p_stack_trace); |