mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 01:51:10 +00:00
11 lines
218 B
C#
11 lines
218 B
C#
|
|
#pragma warning disable CS0169
|
||
|
|
|
||
|
|
namespace Godot.SourceGenerators.Sample
|
||
|
|
{
|
||
|
|
// Generic again but different generic parameters
|
||
|
|
partial class Generic2T<T, R> : GodotObject
|
||
|
|
{
|
||
|
|
private int _field;
|
||
|
|
}
|
||
|
|
}
|