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