39 lines
753 B
C#
39 lines
753 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 直接接入式电能计量装置
|
|
/// </summary>
|
|
public class Device_DirectAccessElectricEnergyMeteringDevice : Device_Base
|
|
{
|
|
public static Device_DirectAccessElectricEnergyMeteringDevice instance;
|
|
/// <summary>
|
|
/// 铭牌
|
|
/// </summary>
|
|
public Device_NamePlate namePlate;
|
|
|
|
/// <summary>
|
|
/// 接线盖子
|
|
/// </summary>
|
|
public Device_Cover cover;
|
|
|
|
|
|
/// <summary>
|
|
/// 电能表接线
|
|
/// </summary>
|
|
[Tooltip("接线")]
|
|
public List<Tool_Line> jieXian_lines;
|
|
|
|
/// <summary>
|
|
/// 电能表固定螺丝
|
|
/// </summary>
|
|
public List<Tool_Screw> fix_screws;
|
|
|
|
private void Awake()
|
|
{
|
|
instance = this;
|
|
}
|
|
|
|
}
|