Protogame.DefaultAudioUtilities.Play C# (CSharp) Méthode

Play() public méthode

public Play ( AudioAsset asset ) : IAudioHandle
asset AudioAsset
Résultat IAudioHandle
        public IAudioHandle Play(AudioAsset asset)
        {
            var handle = GetHandle(asset);
            handle.Play();
            return handle;
        }
    }
DefaultAudioUtilities