1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #105817 from Ivorforce/extension-loader-gdclass-fix

Fix `GDExtensionLoader` using the wrong super type in `GDSOFTCLASS`.
This commit is contained in:
Thaddeus Crews
2025-04-27 19:21:29 -05:00

View File

@@ -35,7 +35,7 @@
class GDExtension;
class GDExtensionLoader : public RefCounted {
GDSOFTCLASS(GDExtensionLoader, GDExtensionLoader);
GDSOFTCLASS(GDExtensionLoader, RefCounted);
public:
virtual Error open_library(const String &p_path) = 0;