18 lines
407 B
C#
18 lines
407 B
C#
using GeometryTD.Definition;
|
|
using UnityEngine;
|
|
|
|
namespace GeometryTD.UI
|
|
{
|
|
public class RewardSelectItemRawData
|
|
{
|
|
public TowerCompSlotType SlotType;
|
|
public string Title;
|
|
public string TypeText;
|
|
public string Description;
|
|
public RarityType Rarity;
|
|
public TagType[] Tags;
|
|
public Sprite Icon;
|
|
public TowerCompItemData SourceItem;
|
|
}
|
|
}
|