using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 连接点接口引用组件,用于关联连接点和目标接口
/// </summary>
public class ConnectionPointInterfaceReference : MonoBehaviour
{
public GameObject targetInterface; // 目标接口对象
}