summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nfp/nfp_user.cpp
blob: 10b0ef944c5f2a1ee354dd9bc7deada14c68fc1e (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                            
                        
 

                                                                          
                                             
                                                                   



                                

                                
                           
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/nfp/nfp_user.h"

namespace Service::NFP {

NFP_User::NFP_User(std::shared_ptr<Module> module_, Core::System& system_)
    : Interface(std::move(module_), system_, "nfp:user") {
    static const FunctionInfo functions[] = {
        {0, &NFP_User::CreateUserInterface, "CreateUserInterface"},
    };
    RegisterHandlers(functions);
}

NFP_User::~NFP_User() = default;

} // namespace Service::NFP