18 lines
421 B
C#
18 lines
421 B
C#
using GeometryTD.Definition;
|
|
|
|
namespace GeometryTD.UI
|
|
{
|
|
public sealed class GoodsItemRawData
|
|
{
|
|
public int GoodsIndex;
|
|
public string Title;
|
|
public string TypeText;
|
|
public string Description;
|
|
public int Price;
|
|
public TagType[] Tags;
|
|
public IconAreaContext IconAreaContext;
|
|
public TowerCompItemData SourceItem;
|
|
public bool IsPurchased;
|
|
}
|
|
}
|