24 lines
345 B
C#
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() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|