You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
353 B
C#
15 lines
353 B
C#
3 weeks ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Unity.Multiplayer.Samples.BossRoom;
|
||
|
using UnityEngine;
|
||
|
using Unity.Netcode;
|
||
|
using TMPro;
|
||
3 weeks ago
|
//namespace Unity.Multiplayer.Samples.BossRoom
|
||
|
//{
|
||
3 weeks ago
|
public class PlayerItem : MonoBehaviour
|
||
|
{
|
||
|
public TextMeshProUGUI PlayerName;
|
||
|
public TextMeshProUGUI PlayerScore;
|
||
|
}
|
||
3 weeks ago
|
//}
|