using System; using System.Collections.Generic; namespace XMainClient { internal struct XRandAttrInfo { public bool bPreview; public List RandAttr; public void Init() { this.bPreview = false; bool flag = this.RandAttr == null; if (flag) { this.RandAttr = new List(); } else { this.RandAttr.Clear(); } } } }