21 lines
317 B
C#
21 lines
317 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public class EngineSystem : MonoBehaviour
|
|
{
|
|
private readonly EngineData _data = new();
|
|
|
|
private void Update()
|
|
{
|
|
|
|
// 更新界面显示
|
|
_data.UpdateView();
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|