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,12 @@
using Mirror;
using UnityEngine;
public class LobbyPlayer : NetworkBehaviour
{
private Lobby lobby = this.gameobject.getComponent<Lobby>();
public override void OnStartClient()
{
}
}