using System; using XUtliPoolLib; namespace XMainClient { internal class HistoryMaxStruct { public uint PreLevel = 0u; private bool IsInit = false; public void Replace() { bool flag = !this.IsInit; if (flag) { this.PreLevel = XSingleton.singleton.XPlayerData.Level; this.IsInit = true; } } } }