geometry-tower-defense/Assets/GameMain/Scripts/UI/General/Context/RewardItemContext.cs

13 lines
288 B
C#

namespace GeometryTD.UI
{
public class RewardItemContext : UIContext
{
public int Index;
public IconAreaContext IconArea;
public string Title;
public string TypeText;
public string Description;
public TagItemContext[] Tags;
}
}