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

15 lines
235 B
C#
Raw Normal View History

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