20 lines
340 B
C#
20 lines
340 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 插座
|
|
/// </summary>
|
|
public class Device_Socket : Device_Base
|
|
{
|
|
/// <summary>
|
|
/// 验电位置
|
|
/// </summary>
|
|
public Transform testPosAndRot;
|
|
/// <summary>
|
|
/// 是否带电
|
|
/// </summary>
|
|
|
|
public bool hasElectricity;
|
|
}
|