1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-16 12:50:04 -06:00
ryujinx/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtm.cs

8 lines
163 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.BluetoothManager
{
[Service("btm")]
class IBtm : IpcService
{
public IBtm(ServiceCtx context) { }
}
}