ccca5e7c28
Tidies up namespace declarations
15 lines
383 B
C++
15 lines
383 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/ns/ns.h"
|
|
#include "core/hle/service/ns/pl_u.h"
|
|
|
|
namespace Service::NS {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
std::make_shared<PL_U>()->InstallAsService(service_manager);
|
|
}
|
|
|
|
} // namespace Service::NS
|