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

15 lines
308 B
C#

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