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/BigBaseV2/src/services/friends_service.hpp

16 lines
267 B
C++
Raw Normal View History

2022-02-21 00:55:21 +01:00
#pragma once
#include "player_service.hpp"
namespace big
{
class friends_service final
{
public:
friends_service();
virtual ~friends_service();
static bool is_friend(const std::unique_ptr<player>& plyr);
};
inline friends_service* g_friends_service{};
}