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