summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/TestData/Sources/Generic.cs
blob: 84d1ede06585c00d6e0d84d05dd88d7e79332b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Godot;

partial class Generic<T> : GodotObject
{
    private int _field;
}

// Generic again but different generic parameters
partial class Generic<T, R> : GodotObject
{
    private int _field;
}

// Generic again but without generic parameters
partial class Generic : GodotObject
{
    private int _field;
}