mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-22 18:15:11 +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,
|
|||
|
}
|
|||
|
}
|