1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-05 17:15:09 +00:00

GDExtension: add support for abstract and virtual classes

This commit is contained in:
Ricardo Buring
2022-10-15 12:01:04 +02:00
parent dc4b616596
commit 1d5aa74ac3
4 changed files with 10 additions and 1 deletions

View File

@@ -295,6 +295,8 @@ struct ObjectNativeExtension {
StringName parent_class_name;
StringName class_name;
bool editor_class = false;
bool is_virtual = false;
bool is_abstract = false;
GDNativeExtensionClassSet set;
GDNativeExtensionClassGet get;
GDNativeExtensionClassGetPropertyList get_property_list;