2018-02-19 22:34:02 +00:00
|
|
|
// 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"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Friend {
|
2018-02-19 22:34:02 +00:00
|
|
|
|
2018-07-24 14:21:04 +00:00
|
|
|
class Friend final : public Module::Interface {
|
2018-02-19 22:34:02 +00:00
|
|
|
public:
|
2018-07-24 14:21:04 +00:00
|
|
|
explicit Friend(std::shared_ptr<Module> module, const char* name);
|
2018-02-19 22:34:02 +00:00
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Friend
|