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