This commit is contained in:
DerTyp187
2021-10-18 09:00:26 +02:00
parent c1af73f04c
commit c07aec7cc8
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameMaster : MonoBehaviour
{
[Header("GameMaster")]
[SerializeField] private int[] scores;
private void Start()
{
}
}