AlpacaLibrary/Include/Game/Models/Projectiles.hpp

28 lines
1.1 KiB
C++

#ifndef PROJECTILES_HPP_INCLUDED
#define PROJECTILES_HPP_INCLUDED
#include "../../Game/Interactable/Projectile.hpp"
#include <functional>
#include <cstdint>
#include <vector>
#include <string>
namespace Projectiles
{
std::vector<Interactable::Projectile> GetAllWithin(std::int32_t Distance);
std::vector<Interactable::Projectile> GetAll();
std::vector<Interactable::Projectile> GetAll(const Tile& T);
std::vector<Interactable::Projectile> GetAll(std::int32_t ID, std::int32_t Distance = -1);
std::vector<Interactable::Projectile> GetAll(const std::vector<std::int32_t>& IDs, std::int32_t Distance = -1);
std::vector<Interactable::Projectile> GetAll(const std::function<bool (Interactable::Projectile&)>& Filter, std::int32_t Distance = -1);
Interactable::Projectile Get(const Tile& T);
Interactable::Projectile Get(std::int32_t ID, std::int32_t Distance = -1);
Interactable::Projectile Get(const std::vector<std::int32_t>& IDs, std::int32_t Distance = -1);
Interactable::Projectile Get(const std::function<bool (Interactable::Projectile&)>& Filter, std::int32_t Distance = -1);
}
#endif // PROJECTILES_HPP_INCLUDED