godot/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Sample/Generic2T.cs

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

11 lines
225 B
C#
Raw Normal View History

#pragma warning disable CS0169
namespace Godot.SourceGenerators.Sample
{
// Generic again but different generic parameters
public partial class Generic2T<T, R> : GodotObject
{
private int _field;
}
}