rj-action-library/Runtime/Graphs/GraphConnection.cs

12 lines
189 B
C#
Raw Normal View History

2025-09-17 08:25:03 +00:00
using System.Collections;
using System.Collections.Generic;
using System;
namespace Rokojori
{
public class GraphConnection<N> where N:class
{
public N from;
public N to;
}
}