3DTD/Assets/Scripts/Audio/ButtonSFX.cs

17 lines
239 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ButtonSFX : MonoBehaviour
{
public void OnHover()
{
//AudioManager.PlaySound("");
}
public void OnClick()
{
}
}