Files
David Kalatzis 058f9201fe Add lobbies list searching functionality
You can now view a list of on going lobbies, on top of being able to join a specific lobby through a lobby code
2023-03-29 02:13:49 +03:00

16 lines
275 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
public class LobbyButton : BaseButton
{
[SerializeField] private TextMeshProUGUI _Idtext = default;
public void SetData(string id)
{
_Idtext.text = id;
}
}