Aimbot-ParallelEnv/Assets/Script/UI/LevelButton.cs
2023-10-15 02:16:43 +09:00

16 lines
334 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
public class LevelButton : MonoBehaviour
{
public int level;
public TextMeshProUGUI levelText;
public void Initialization(int level)
{
this.level = level;
levelText.text = "Level " + level.ToString();
}
}