Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NAudio support #491

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Assets/Plugins/NAudio.Vorbis.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions Assets/Plugins/NAudio.Vorbis/EndOfStreamEventArgs.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
using System;

namespace NAudio.Vorbis
{
/// <summary>
/// Arguments for the EndOfStream event.
/// </summary>
[Serializable]
public class EndOfStreamEventArgs : EventArgs
{
/// <summary>
/// Creates a new instance of <see cref="EndOfStreamEventArgs"/>.
/// </summary>
public EndOfStreamEventArgs() { }

/// <summary>
/// Gets or sets whether to auto-advance to the next stream.
/// </summary>
public bool AdvanceToNextStream { get; set; }

/// <summary>
/// Gets or sets whether to remember the ended stream or dispose and remove it from the list.
/// </summary>
public bool KeepStream { get; set; } = true;
}
}
11 changes: 11 additions & 0 deletions Assets/Plugins/NAudio.Vorbis/EndOfStreamEventArgs.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Assets/Plugins/NAudio.Vorbis/NAudio.Vorbis.csproj.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading