nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame
178 Bytes
namespace Unity.VisualScripting
{
public interface IUnitPortCollection<TPort> : IKeyedCollection<string, TPort> where TPort : IUnitPort
{
TPort Single();
}
}