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

16 lines
384 B
C#

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