15 lines
377 B
C#
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;
|
|
}
|
|
}
|