Aimbot-ParallelEnv/Assets/Script/LevelButton.cs

13 lines
229 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LevelButton : MonoBehaviour
{
public int level;
public void Initialization(int level)
{
this.level = level;
}
}