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

18 lines
430 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef FRIENDS_HPP_INCLUDED
#define FRIENDS_HPP_INCLUDED
#include "../../../Core/Classes/Friend.hpp"
#include <functional>
#include <vector>
2018-12-27 18:17:09 +00:00
namespace Friends
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
bool IsOpen();
2019-05-31 20:06:57 +00:00
bool Open(bool UseHotkey = false);
2019-05-28 16:34:51 +00:00
std::int32_t GetTabHotkey();
2018-12-27 18:17:09 +00:00
std::vector<Internal::Friend> GetAll();
std::vector<Internal::Friend> GetAll(const std::function<bool (Internal::Friend&)>& Filter);
2018-12-31 21:52:58 +00:00
}
2017-12-25 23:49:48 +00:00
#endif // FRIENDS_HPP_INCLUDED