15 lines
235 B
C#
15 lines
235 B
C#
|
|
namespace Gameplay.Unit.Data
|
|||
|
|
{
|
|||
|
|
public class UnitUIData
|
|||
|
|
{
|
|||
|
|
public GameUnit owner;
|
|||
|
|
|
|||
|
|
public int uiIndex = 1;
|
|||
|
|
|
|||
|
|
public UnitUIData(GameUnit owner)
|
|||
|
|
{
|
|||
|
|
this.owner = owner;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|