using Godot; namespace Babushka.scripts.CSharp.Common.Audio; public partial class AudioPlayer : AudioStreamPlayer { /// /// For SFX and other audio that should be played only once and not looped. /// public void PlayOneShot() { Play(); } }