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

21 lines
563 B
C++
Raw Normal View History

2022-02-21 00:55:21 +01:00
#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;
2022-02-21 00:55:21 +01:00
[[nodiscard]] static bool is_friend(int64_t rockstar_id);
[[nodiscard]] static bool is_friend(CNetGamePlayer* net_player);
2022-02-21 00:55:21 +01:00
};
inline friends_service* g_friends_service{};
}