geometry-tower-defense/Assets/GameMain/Scripts/UI/Combat/Context/TowerSelectItemContext.cs

15 lines
322 B
C#

using UnityEngine;
namespace GeometryTD.UI
{
public class TowerSelectItemContext : UIContext
{
public Sprite Icon;
public string PriceText;
public bool IsVisible;
public bool IsInteractable;
public CombatSelectActionType ActionType;
public int ActionIndex;
}
}