14 lines
301 B
C#
14 lines
301 B
C#
using Darkmatter.Core;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace Darkmatter.Presentation
|
|
{
|
|
public class LeaderBoardData : MonoBehaviour,ILeaderBoardData
|
|
{
|
|
public TextMeshProUGUI playerPos;
|
|
public TextMeshProUGUI playerName;
|
|
public TextMeshProUGUI playerScore;
|
|
}
|
|
}
|