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