MIF_E31222569/Assets/ToothyV/Scripts/UI/CreditMenu.cs

13 lines
273 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CreditMenu : Menu<CreditMenu>
{
public override void OnBackPressed()
{
audioController.Instance.PlaySFX("TombolClose", 0.5f);
base.OnBackPressed();
}
}