This commit is contained in:
2024-10-24 14:34:42 +08:00
parent 4e6d16872b
commit 7a43b16913
34 changed files with 924 additions and 6 deletions
@@ -0,0 +1,20 @@
using System;
using UnityEngine;
namespace AibisDream
{
public class EngineSystem : MonoBehaviour
{
private readonly EngineData _data = new();
private void Update()
{
// 更新界面显示
_data.UpdateView();
}
}
}