mirror of
https://github.com/ConjureETS/Unity_Utils.git
synced 2026-03-24 13:00:58 +00:00
9 lines
170 B
C#
9 lines
170 B
C#
using UnityEngine;
|
|
|
|
namespace AudioEvent
|
|
{
|
|
public abstract class AudioEvent : ScriptableObject
|
|
{
|
|
public abstract void Play(AudioSource source);
|
|
}
|
|
} |