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