13 lines
229 B
C#
13 lines
229 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class LevelButton : MonoBehaviour
|
||
|
{
|
||
|
public int level;
|
||
|
public void Initialization(int level)
|
||
|
{
|
||
|
this.level = level;
|
||
|
}
|
||
|
}
|