1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
using System; using System.Collections.Generic; namespace XMainClient { internal class XCharacterFashionView : DlgHandlerBase { private List<uint> FashionData = null; public void SetFashionData(List<uint> data) { this.FashionData = data; bool flag = base.IsVisible(); if (flag) { this.RefreshData(); } } } }