namespace Misaki.GraphView
{
public interface ISlotContainer
{
///
/// Get the slot by the index and direction.
///
/// Index of the slot
/// Direction of the slot
/// The slot that matches the index and direction
public ISlot GetSlot(int index, SlotDirection direction);
///
/// Unlink all the slots of the node.
///
public void UnlinkAllSlots();
}
}