Added score text
This commit is contained in:
23
Assets/Scripts/LevelManager.cs
Normal file
23
Assets/Scripts/LevelManager.cs
Normal 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() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user