Files
defrain-shooter-unity/Assets/Scripts/HomeMenu/Lobby/Lobby.cs
DerTyp187 95219e730e odku
2021-11-26 16:02:03 +01:00

10 lines
209 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Lobby : MonoBehaviour
{
[SerializeField]
public List<LobbyPlayer> LobbyPlayers = new List<LobbyPlayer>();
}