This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/services/friends/friends_service.hpp
tupoy-ya 1087146e56
refactor!: Replace premake5 with CMake. (#551)
Co-authored-by: tupoy-ya <tupoy-ya@users.noreply.github.com>
2022-11-08 21:08:58 +00:00

20 lines
475 B
C++

#pragma once
namespace big
{
class friends_service final
{
public:
friends_service();
~friends_service();
friends_service(const friends_service&) = delete;
friends_service(friends_service&&) noexcept = delete;
friends_service& operator=(const friends_service&) = delete;
friends_service& operator=(friends_service&&) noexcept = delete;
[[nodiscard]] static bool is_friend(CNetGamePlayer* net_player);
};
inline friends_service* g_friends_service{};
}