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

19 lines
427 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef IGNORES_HPP_INCLUDED
#define IGNORES_HPP_INCLUDED
#include "../../../Core/Classes/Ignore.hpp"
#include <functional>
#include <vector>
2024-01-23 16:28:05 +00:00
#include <cstdint>
2017-12-25 23:49:48 +00:00
2018-12-27 18:17:09 +00:00
namespace Ignores
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
bool IsOpen();
bool Open();
2019-05-28 16:34:51 +00:00
std::int32_t GetTabHotkey();
2018-12-27 18:17:09 +00:00
std::vector<Internal::Ignore> GetAll();
std::vector<Internal::Ignore> GetAll(const std::function<bool (Internal::Ignore&)>& Filter);
2018-12-31 21:52:58 +00:00
}
2017-12-25 23:49:48 +00:00
#endif // IGNORES_HPP_INCLUDED