26 lines
467 B
C#
26 lines
467 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public class EngineData
|
|
{
|
|
public float curSpeed;
|
|
public float curOil;
|
|
public float curAirMin;
|
|
public float curAirMax;
|
|
|
|
public int airGateLevel;
|
|
|
|
public void UpdateView()
|
|
{
|
|
// 计算数据对应关系
|
|
|
|
// 把数据同步到界面上
|
|
|
|
}
|
|
}
|
|
}
|
|
|