rokojori_action_library/Runtime/Godot/ResourceRunner.cs

13 lines
213 B
C#
Raw Normal View History

2026-02-06 08:59:59 +00:00
using Godot;
using System.Text;
using System.Collections.Generic;
2026-05-22 12:25:02 +00:00
using Rokojori.Extensions;
2026-02-06 08:59:59 +00:00
namespace Rokojori
{
public class ResourceRunner<R,D,P> where R:Resource where P:Node
{
public D data;
}
}