18 lines
356 B
C#
18 lines
356 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SelectPlayOrLearnMenu : Menu<SelectPlayOrLearnMenu>
|
|
{
|
|
public void ChooseLearn()
|
|
{
|
|
audioController.Instance.PlaySFX("TombolUmum", 0.5f);
|
|
ChooseMateriMenu.Open();
|
|
}
|
|
|
|
public void ChoosePlay()
|
|
{
|
|
SelectLevel.Open();
|
|
}
|
|
}
|