This commit is contained in:
DerTyp187
2021-11-26 16:02:03 +01:00
parent 9cd80c86e0
commit 95219e730e
16 changed files with 679 additions and 387 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Lobby : MonoBehaviour
{
[SerializeField]
public List<LobbyPlayer> LobbyPlayers = new List<LobbyPlayer>();
}