switch set, automatize more of the content without UI change
This commit is contained in:
16
Assets/UI/ChampionDisplayInfo.cs
Normal file
16
Assets/UI/ChampionDisplayInfo.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace UI
|
||||
{
|
||||
public class ChampionDisplayInfo : MonoBehaviour
|
||||
{
|
||||
public string DisplayName { get; }
|
||||
public int Cost { get; }
|
||||
|
||||
public ChampionDisplayInfo(string displayName, int cost)
|
||||
{
|
||||
DisplayName = displayName;
|
||||
Cost = cost;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user