2018-04-22 01:04:24 -04:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-18 19:43:28 -04:00
|
|
|
#pragma once
|
|
|
|
|
2018-09-11 20:46:49 -04:00
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
2018-04-22 01:04:24 -04:00
|
|
|
|
2019-09-22 02:37:59 -04:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-04-22 22:02:18 -04:00
|
|
|
namespace Service::PlayReport {
|
2018-04-22 01:04:24 -04:00
|
|
|
|
2019-09-22 02:37:59 -04:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
|
2018-04-22 01:04:24 -04:00
|
|
|
|
2018-04-22 22:02:18 -04:00
|
|
|
} // namespace Service::PlayReport
|