16 lines
419 B
C#
16 lines
419 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 float WeaponRecycleRate = 0.3f;
|
|
}
|
|
}
|