#ifndef CLAN_HPP_INCLUDED #define CLAN_HPP_INCLUDED #include "../../../Core/Classes/ClanMember.hpp" #include #include /** @addtogroup GameTabs * @{ */ class Clan { public: static bool IsOpen(); static bool Open(); static std::vector GetAll(); static std::vector GetAll(const std::function& Filter); }; /** @} */ #endif // CLAN_HPP_INCLUDED