blob: cee4f67921477ebfe54a656cda4c0967d2b5f0ca (
plain)
1
2
3
4
5
6
7
|
using Godot;
public abstract partial class AbstractGenericNode<[MustBeVariant] T> : Node
{
[Export] // This should be included, but without type hints.
public Godot.Collections.Array<T> MyArray { get; set; } = new();
}
|