mirror of
https://github.com/DerTyp7/defrain-shooter-unity.git
synced 2025-10-29 12:52:07 +01:00
odku
This commit is contained in:
8
Assets/Scripts/HomeMenu/Lobby.meta
Normal file
8
Assets/Scripts/HomeMenu/Lobby.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a89988743206dad48b795c77ff2b011d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
Assets/Scripts/HomeMenu/Lobby/Lobby.cs
Normal file
9
Assets/Scripts/HomeMenu/Lobby/Lobby.cs
Normal 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>();
|
||||
}
|
||||
11
Assets/Scripts/HomeMenu/Lobby/Lobby.cs.meta
Normal file
11
Assets/Scripts/HomeMenu/Lobby/Lobby.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b6183dbb3c561ed44803ffda1c859dc9
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
12
Assets/Scripts/HomeMenu/Lobby/LobbyPlayer.cs
Normal file
12
Assets/Scripts/HomeMenu/Lobby/LobbyPlayer.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Mirror;
|
||||
using UnityEngine;
|
||||
|
||||
public class LobbyPlayer : NetworkBehaviour
|
||||
{
|
||||
private Lobby lobby = this.gameobject.getComponent<Lobby>();
|
||||
public override void OnStartClient()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
11
Assets/Scripts/HomeMenu/Lobby/LobbyPlayer.cs.meta
Normal file
11
Assets/Scripts/HomeMenu/Lobby/LobbyPlayer.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6947f097045a71a499212176b7475daf
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
Assets/Scripts/HomeMenu/Lobby/goopz3fi.4p3~
Normal file
9
Assets/Scripts/HomeMenu/Lobby/goopz3fi.4p3~
Normal 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>();
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
using Mirror;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
using TMPro;
|
||||
|
||||
public class MenuStartClient : MonoBehaviour
|
||||
|
||||
Reference in New Issue
Block a user