22 lines
306 B
C#
22 lines
306 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ProfileWidget : MonoBehaviour
|
|
{
|
|
public Text lblProfileName;
|
|
|
|
public Text lblDifficulty;
|
|
|
|
public Text lblLevel;
|
|
|
|
public Text lblLevelLabel;
|
|
|
|
public Button btnDelete;
|
|
|
|
public Color[] difficultyColors = new Color[3];
|
|
|
|
private void Start()
|
|
{
|
|
}
|
|
}
|