网上演练贵港万达广场(人员密集)
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

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,
}
}