#ifndef WALLOBJECTS_HPP_INCLUDED #define WALLOBJECTS_HPP_INCLUDED #include "../../Game/Interactable/WallObject.hpp" #include #include #include #include /** @addtogroup Models * @{ */ class WallObjects { public: static std::vector GetAll(); static std::vector GetAll(std::int32_t ID); static std::vector GetAll(const std::string& Name); static std::vector GetAll(const std::vector& IDs); static std::vector GetAll(const std::vector& Names); static std::vector GetAll(const std::function& Filter); static Interactable::WallObject Get(const Tile& T); static Interactable::WallObject Get(std::int32_t ID); static Interactable::WallObject Get(const std::string& Name); static Interactable::WallObject Get(const std::vector& IDs); static Interactable::WallObject Get(const std::vector& Names); static Interactable::WallObject Get(const std::function& Filter); }; /** @} */ #endif // WALLOBJECTS_HPP_INCLUDED