geometry-tower-defense/Assets/GameMain/Scripts/UI/Game/Context/SellAreaContext.cs

11 lines
246 B
C#

namespace GeometryTD.UI
{
public class SellAreaContext
{
public string TotalPriceText;
public bool CanConfirmSell;
public RepoItemContext[] ComponentItems;
public TowerRepoItemContext[] TowerItems;
}
}