mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-24 11:32:23 -05:00
9 lines
204 B
C#
9 lines
204 B
C#
namespace Ryujinx.HLE.HOS.Services.Time
|
|
{
|
|
[Service("time:p")] // 9.0.0+
|
|
class IPowerStateRequestHandler : IpcService
|
|
{
|
|
public IPowerStateRequestHandler(ServiceCtx context) { }
|
|
}
|
|
}
|