This commit is contained in:
MuHua-123
2025-03-13 14:47:35 +08:00
parent b21c662c1a
commit ee23be5819
34 changed files with 974 additions and 35 deletions
@@ -0,0 +1,16 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using MuHua;
/// <summary>
/// 分析模块
/// </summary>
public class ModuleAnalysis : MonoBehaviour {
public List<DataAnalysis> analyses;
private void Start() {
AnalysisCollector.I.GetStock("601658", (analyses) => { this.analyses = analyses; });
}
}