ElectricityBusinessHall_Dig.../Assets/Resources/Scripts/Manager/ModelItem.cs

29 lines
442 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ModelItem : MonoBehaviour
{
//类型
public ModelType modelType;
//设备类型
public DeviceType deviceType;
//异常类型
public ExceptionType expType;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}