using UnityEngine; public class INT_PlaySound : MonoBehaviour { public AudioSource Audio; public void RUN() { Audio.Play(); } }