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

22 lines
476 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef CLAN_HPP_INCLUDED
#define CLAN_HPP_INCLUDED
#include "../../../Core/Classes/ClanMember.hpp"
#include <functional>
#include <vector>
/** @addtogroup GameTabs
* @{ */
class Clan
{
public:
static bool IsOpen();
static bool Open();
2018-03-18 14:38:29 +00:00
static std::vector<Internal::ClanMember> GetAll();
static std::vector<Internal::ClanMember> GetAll(const std::function<bool (Internal::ClanMember&)>& Filter);
2017-12-25 23:49:48 +00:00
};
/** @} */
#endif // CLAN_HPP_INCLUDED