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

13 lines
264 B
C#

using GeometryTD.Definition;
namespace GeometryTD.UI
{
public class RepoItemContext
{
public string Title;
public long InstanceId;
public TowerCompSlotType ComponentSlotType;
public IconAreaContext IconAreaContext;
}
}