1
0
Fork 0
forked from suyu/suyu
suyu/src/core/hle/service/friend/interface.h
2019-09-22 16:30:27 +10:00

17 lines
422 B
C++

// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/friend/friend.h"
namespace Service::Friend {
class Friend final : public Module::Interface {
public:
explicit Friend(std::shared_ptr<Module> module, Core::System& system, const char* name);
~Friend() override;
};
} // namespace Service::Friend