mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 15:02: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) { }
|
|
}
|
|
}
|