Fix undefined symbol error on Linux with virtual methods that take Node * arguments

This commit is contained in:
David Snopek
2024-06-10 10:51:52 -05:00
parent 21d526e5e5
commit 7f74fe7bb2
4 changed files with 16 additions and 14 deletions

View File

@@ -186,6 +186,7 @@ public:
GDVIRTUAL2R(String, _do_something_virtual, String, int);
String test_virtual_implemented_in_script(const String &p_name, int p_value);
GDVIRTUAL1(_do_something_virtual_with_control, Control *);
String test_use_engine_singleton() const;
};