Files
FlowScope/My project/Assets/FlowScope/Runtime/Core/IScopeInfo.cs
2026-06-18 10:25:32 +08:00

11 lines
194 B
C#

namespace FlowScope
{
public interface IScopeInfo
{
string Name { get; }
IScopeInfo Parent { get; }
string Path { get; }
bool IsDisposed { get; }
}
}