AlpacaLibrary/Include/Game/Interfaces/GameTabs/Friends.hpp

21 lines
419 B
C++

#ifndef FRIENDS_HPP_INCLUDED
#define FRIENDS_HPP_INCLUDED
#include "../../../Core/Classes/Friend.hpp"
#include <functional>
#include <vector>
/** @addtogroup GameTabs
* @{ */
namespace Friends
{
bool IsOpen();
bool Open();
std::vector<Internal::Friend> GetAll();
std::vector<Internal::Friend> GetAll(const std::function<bool (Internal::Friend&)>& Filter);
}
/** @} */
#endif // FRIENDS_HPP_INCLUDED