Move scripts

This commit is contained in:
RochesterX
2025-02-17 19:00:00 -05:00
parent a3ce16bd3a
commit fb844a2533
7 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using TMPro;
using UnityEngine;
public class PlayerJoinCard : MonoBehaviour
{
public GameObject playerPreview;
public int playerNumber;
public TextMeshProUGUI playerNumberText;
void Start()
{
playerNumberText.text = playerNumber.ToString();
}
}