You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
529 B
21 lines
529 B
2 months ago
|
using UnityEngine;
|
||
|
/// <summary>
|
||
|
/// 装置固定消防系统控制脚本(DeviceName和FireProtectionType组合决定唯一性)
|
||
|
/// </summary>
|
||
|
public class DeviceFireProtectionControl : MonoBehaviour
|
||
|
{
|
||
|
public string DeviceName;
|
||
|
public string FireProtectionType;
|
||
|
public GameObject controlObject;
|
||
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
||
|
void Start()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|