forked from hertog/godot-module-template
11 lines
215 B
C#
11 lines
215 B
C#
#pragma warning disable CS0169
|
|
|
|
namespace Godot.SourceGenerators.Sample
|
|
{
|
|
// Generic again but without generic parameters
|
|
public partial class Generic : GodotObject
|
|
{
|
|
private int _field;
|
|
}
|
|
}
|