mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:28:34 +00:00
10 lines
129 B
C#
10 lines
129 B
C#
|
using System;
|
|||
|
namespace SoundIOSharp
|
|||
|
{
|
|||
|
public enum SoundIODeviceAim // soundio.h (228, 6)
|
|||
|
{
|
|||
|
Input = 0,
|
|||
|
Output = 1,
|
|||
|
}
|
|||
|
}
|