blob: 64b7e69c6a6f232c71f19a279ff395d8c94213a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
namespace Ryujinx.HLE.HOS.Services.Time
{
[Service("time:p")] // 9.0.0+
class IPowerStateRequestHandler : IpcService
{
public IPowerStateRequestHandler(ServiceCtx context) { }
}
}
|