Files
SimonSayeBabu bd1057cec0 first commit
2025-01-17 13:10:20 +01:00

10 lines
205 B
C#

namespace Unity.VisualScripting
{
public interface IUnitConnectionDebugData : IGraphElementDebugData
{
int lastInvokeFrame { get; set; }
float lastInvokeTime { get; set; }
}
}