AlpacaLibary  1.63
A closed source C++ bot for OSRS
Clan.hpp
Go to the documentation of this file.
1 #ifndef CLAN_HPP_INCLUDED
2 #define CLAN_HPP_INCLUDED
3 
4 #include "../../../Core/Classes/ClanMember.hpp"
5 #include <functional>
6 #include <vector>
7 
8 namespace Clan
9 {
10  bool IsOpen();
11  bool Open(bool UseHotkey = false);
12  std::int32_t GetTabHotkey();
13  std::vector<Internal::ClanMember> GetAll();
14  std::vector<Internal::ClanMember> GetAll(const std::function<bool (Internal::ClanMember&)>& Filter);
15 }
16 
17 #endif // CLAN_HPP_INCLUDED
Definition: Clan.hpp:9
std::vector< Internal::ClanMember > GetAll()
std::int32_t GetTabHotkey()
bool Open(bool UseHotkey=false)
bool IsOpen()