#ifndef NPCS_HPP_INCLUDED #define NPCS_HPP_INCLUDED #include "../../Game/Interactable/NPC.hpp" #include #include #include #include /** @addtogroup Models * @{ */ class NPCs { public: static std::vector GetAll(); static std::vector GetAll(const Tile& Tile); 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::NPC Get(); static Interactable::NPC Get(const Tile& Tile); static Interactable::NPC Get(std::int32_t ID); static Interactable::NPC Get(const std::string& Name); static Interactable::NPC Get(const std::vector& IDs); static Interactable::NPC Get(const std::vector& Names); static Interactable::NPC Get(const std::function& Filter); }; /** @} */ #endif // NPCS_HPP_INCLUDED