mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-17 01:30:04 +00:00
325c259fc5
This doesn't need to be exposed within the header and be kept in the translation unit, eliminating the need to include anything within the header.
16 lines
319 B
C++
16 lines
319 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
namespace Service::SM {
|
|
class ServiceManager;
|
|
}
|
|
|
|
namespace Service::PlayReport {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
} // namespace Service::PlayReport
|