Files
let-him-cook/Assets/Scripts/LevelManager.cs
2024-04-09 14:45:07 +02:00

24 lines
345 B
C#

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() {
}
}