virtualx-engine/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Sample/Generic.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
433 B
C#
Raw Normal View History

#pragma warning disable CS0169
namespace Godot.SourceGenerators.Sample
{
2022-12-07 16:16:51 +01:00
partial class Generic<T> : GodotObject
{
private int _field;
}
// Generic again but different generic parameters
2022-12-07 16:16:51 +01:00
partial class Generic<T, R> : GodotObject
{
private int _field;
}
// Generic again but without generic parameters
2022-12-07 16:16:51 +01:00
partial class Generic : GodotObject
{
private int _field;
}
}