aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Time/IAlarmService.cs
blob: 46b58408a3ff64ab6b26f90a1e53ba7f8109bc6f (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.HLE.HOS.Services.Time
{
    [Service("time:al")] // 9.0.0+
    class IAlarmService : IpcService
    {
        public IAlarmService(ServiceCtx context) { }
    }
}