mirror of
https://github.com/DerTyp7/defrain-shooter-unity.git
synced 2025-10-29 12:52:07 +01:00
13 lines
202 B
C#
13 lines
202 B
C#
using Mirror;
|
|
using UnityEngine;
|
|
|
|
public class LobbyPlayer : NetworkBehaviour
|
|
{
|
|
private Lobby lobby = this.gameobject.getComponent<Lobby>();
|
|
public override void OnStartClient()
|
|
{
|
|
|
|
}
|
|
|
|
}
|