You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
You can now view a list of on going lobbies, on top of being able to join a specific lobby through a lobby code
16 lines
275 B
C#
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;
|
|
}
|
|
}
|