17 lines
340 B
C#
17 lines
340 B
C#
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; });
|
|
|
|
|
|
}
|
|
}
|