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