Added score text

This commit is contained in:
2024-04-09 14:45:07 +02:00
parent c654661e8e
commit d984e0dfe3
4 changed files with 743 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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() {
}
}