You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
360 B
23 lines
360 B
4 years ago
|
using System;
|
||
|
|
||
|
namespace AX.AudioSystem
|
||
|
{
|
||
|
public enum Channel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 1 Channel.
|
||
|
/// </summary>
|
||
|
Mono = 1,
|
||
|
/// <summary>
|
||
|
/// 2 Channels.
|
||
|
/// </summary>
|
||
|
Stereo = 2,
|
||
|
}
|
||
|
|
||
|
public enum ForceChannels
|
||
|
{
|
||
|
Auto = -1000,
|
||
|
Mono = 1,
|
||
|
Stereo = 2,
|
||
|
}
|
||
|
}
|