cirnogodot/Scripts/Resources/TestGeneric/GenericTestNode.cs
2025-02-14 19:00:31 +01:00

8 lines
No EOL
194 B
C#

using Godot;
namespace Cirno.Scripts.Resources.TestGeneric;
public partial class GenericTestNode : Node2D
{
[Export] public GenericTestResourceBase TestResource { get; set; } = null!;
}