using System.Collections.Generic; using Fort23.UTool; namespace Core.BattleReport { public class ReportFightMassgeLogDataModule { public List ReportFightMassgeLogDatas = new List(); public void Add(float t, string m) { ReportFightMassgeLogData reportFightMassgeLogData = new ReportFightMassgeLogData(); reportFightMassgeLogData.time = t; reportFightMassgeLogData.msg = m; ReportFightMassgeLogDatas.Add(reportFightMassgeLogData); // LogTool.Log($"{t} {m}"); } } }