This commit is contained in:
DerTyp187
2021-11-01 08:45:45 +01:00
parent 5921e33205
commit 30a30d7ef5
6 changed files with 192 additions and 99 deletions

View File

@@ -12,11 +12,19 @@ using UnityEngine;
public class GameMaster : MonoBehaviour
{
[Header("GameMaster")]
<<<<<<< Updated upstream
[SerializeField] private List<Player> Players = new List<Player>();
private void Start()
{
}
=======
[SerializeField] private List<Player> Players = new List<Player>();
[SerializeField] private int countOfRounds = 10;
public GameObject localPlayer;
>>>>>>> Stashed changes
private void Update()
{
@@ -33,4 +41,13 @@ public class GameMaster : MonoBehaviour
Cursor.visible = false;
}
}
<<<<<<< Updated upstream
=======
>>>>>>> Stashed changes
}