구현 내용1. 로비 연결 LobbyWindow.csusing Cysharp.Threading.Tasks;using System.Collections.Generic;using TMPro;using Unity.VisualScripting;using UnityEngine;using UnityEngine.UI;public class LobbyWindow : UIElement{ #region Cashed Object [SerializeField] private Image Img_Character = null; [SerializeField] private TMP_Text Text_Score = null; [SerializeField] private TMP_Text Text_Level = nu..