switch set, automatize more of the content without UI change

This commit is contained in:
2025-10-11 00:53:40 +02:00
parent 55050c87f9
commit bf4ed2c74f
51 changed files with 11109 additions and 13677 deletions

View 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;
}
}
}