16 lines
380 B
C#
16 lines
380 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;
|
|
public TowerIconAreaContext TowerIconAreaContext;
|
|
}
|
|
}
|