Merge pull request #81101 from 398utubzyt/dotnet/abstract-class-support

C#: Add abstract class support
This commit is contained in:
Rémi Verschelde
2023-09-25 17:18:05 +02:00
16 changed files with 73 additions and 20 deletions

View File

@ -110,6 +110,12 @@ public:
EXBIND0RC(bool, is_tool)
EXBIND0RC(bool, is_valid)
virtual bool is_abstract() const override {
bool abst;
return GDVIRTUAL_CALL(_is_abstract, abst) && abst;
}
GDVIRTUAL0RC(bool, _is_abstract)
EXBIND0RC(ScriptLanguage *, get_language)
EXBIND1RC(bool, has_script_signal, const StringName &)