using UnityEngine; namespace AudioEvent { public abstract class AudioEvent : ScriptableObject { public abstract void Play(AudioSource source); } }