aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Caps/IScreenshotService.cs
blob: ab921e0859ac4315a22e6ff2a9d698d5259dc7b1 (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.HLE.HOS.Services.Caps
{
    [Service("caps:ss")] // 2.0.0+
    class IScreenshotService : IpcService
    {
        public IScreenshotService(ServiceCtx context) { }
    }
}