2018-02-14 22:22:41 -05:00
|
|
|
// 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"
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::NS {
|
2018-02-14 22:22:41 -05:00
|
|
|
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
|
|
std::make_shared<PL_U>()->InstallAsService(service_manager);
|
|
|
|
}
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::NS
|