geometry-tower-defense-base/src-ref/UI/Shop/Context/GoodsItemContext.cs

15 lines
377 B
C#

namespace GeometryTD.UI
{
public sealed class GoodsItemContext : UIContext
{
public int GoodsIndex;
public string Title;
public string TypeText;
public string Description;
public string[] TagTexts;
public string PurchaseButtonText;
public bool CanPurchase;
public IconAreaContext IconAreaContext;
}
}