Merge pull request #104279 from L2750558108/pr-fix-nested-in-generic-errors

Fix nested GodotObject class in generic class lead to source generator errors in C#
This commit is contained in:
Rémi Verschelde 2025-03-28 14:32:44 +01:00
commit 0d3ce48562
No known key found for this signature in database
GPG key ID: C3336907360768E1
5 changed files with 42 additions and 2 deletions

View file

@ -0,0 +1,9 @@
using Godot;
public partial class GenericClass<T>
{
public partial class NestedClass : GodotObject
{
}
}