using System.Collections; using System.Collections.Generic; using UnityEngine; public class LevelManager : MonoBehaviour { public int level; // Start is called before the first frame update void Start() { level = 1; } // Update is called once per frame private void Update() { } }