mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-01-09 16:03:21 +00:00
ccca5e7c28
Tidies up namespace declarations
14 lines
397 B
C++
14 lines
397 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/service/pctl/pctl.h"
|
|
#include "core/hle/service/pctl/pctl_a.h"
|
|
|
|
namespace Service::PCTL {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
std::make_shared<PCTL_A>()->InstallAsService(service_manager);
|
|
}
|
|
|
|
} // namespace Service::PCTL
|