NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Unit/Data/UnitUIData.cs

17 lines
268 B
C#
Raw Normal View History

2024-09-29 16:20:18 +08:00
namespace Gameplay.Unit.Data
{
public class UnitUIData
{
public GameUnit owner;
2024-10-09 13:19:06 +08:00
public int uiIndex;
public bool isContinueLock;
2024-09-29 16:20:18 +08:00
public UnitUIData(GameUnit owner)
{
this.owner = owner;
}
}
}