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

22 lines
446 B
C++

#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();
static std::vector<ClanMember> GetAll();
static std::vector<ClanMember> GetAll(const std::function<bool (ClanMember&)>& Filter);
};
/** @} */
#endif // CLAN_HPP_INCLUDED