22 lines
605 B
C#
22 lines
605 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SepCore.UI
|
|
{
|
|
public class ShopContext : UIContext
|
|
{
|
|
public int CurrentLevel;
|
|
public int RefreshPrice;
|
|
public int PlayerCoin;
|
|
public List<GoodsItemContext> GoodsItems;
|
|
public DisplayListAreaContext PropListContext;
|
|
public DisplayListAreaContext WeaponListContext;
|
|
|
|
// 控制字段
|
|
public bool NeedRefreshGoodsItems;
|
|
public bool NeedRefreshPlayerCoin;
|
|
public bool NeedRefreshWeaponList;
|
|
public bool NeedRefreshPropList;
|
|
public bool NeedRefreshPrice;
|
|
}
|
|
}
|