19 lines
294 B
C#
19 lines
294 B
C#
|
using TMPro;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
namespace RoR2.UI;
|
||
|
|
||
|
public class LeaderboardStrip : MonoBehaviour
|
||
|
{
|
||
|
public TextMeshProUGUI rankLabel;
|
||
|
|
||
|
public SteamUsernameLabel usernameLabel;
|
||
|
|
||
|
public RawImage classIcon;
|
||
|
|
||
|
public Image isMeImage;
|
||
|
|
||
|
public TextMeshProUGUI timeLabel;
|
||
|
}
|