1
0
Fork 0
forked from suyu/suyu
suyu/src/core/hle/service/friend/interface.h

17 lines
376 B
C
Raw Normal View History

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"
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
};
} // namespace Service::Friend