2024-04-21 11:52:28 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class ButtonSFX : MonoBehaviour
|
|
|
|
{
|
|
|
|
public void OnHover()
|
|
|
|
{
|
2024-04-21 11:52:41 +02:00
|
|
|
//AudioManager.PlaySound("");
|
2024-04-21 11:52:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void OnClick()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|