#ifndef GRAPHICSOBJECTS_HPP_INCLUDED #define GRAPHICSOBJECTS_HPP_INCLUDED #include "../../Game/Interactable/GraphicsObject.hpp" #include #include #include #include namespace GraphicsObjects { std::vector GetAllWithin(std::int32_t Distance); std::vector GetAll(); std::vector GetAll(const Tile& T); std::vector GetAll(std::int32_t ID, std::int32_t Distance = -1); std::vector GetAll(const std::vector& IDs, std::int32_t Distance = -1); std::vector GetAll(const std::function& Filter, std::int32_t Distance = -1); Interactable::GraphicsObject Get(const Tile& T); Interactable::GraphicsObject Get(std::int32_t ID, std::int32_t Distance = -1); Interactable::GraphicsObject Get(const std::vector& IDs, std::int32_t Distance = -1); Interactable::GraphicsObject Get(const std::function& Filter, std::int32_t Distance = -1); } #endif // GRAPHICSOBJECTS_HPP_INCLUDED