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

15 lines
297 B
C#

using System;
using GeometryTD.Definition;
namespace GeometryTD.UI
{
[Serializable]
public class RepoItemContext
{
public long InstanceId;
public bool CanDrag;
public TowerCompSlotType ComponentSlotType;
public IconAreaContext IconAreaContext;
}
}