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

15 lines
303 B
C#

using UnityEngine;
namespace GeometryTD.UI
{
public class ItemDescFormContext : UIContext
{
public string Title;
public string TypeText;
public string Description;
public int Price;
public Vector3 TargetPos;
public TagItemContext[] Tags;
}
}