while working on the project there was this error on the main saying Inline function 'MEU::apply_texture' is not defined
main.cpp
#include "helper.hpp"
...
int main() {
...
MEU::apply_texture(viewport, 8*4, image_size); // error
...
helper.hpp
namespace MEU {
...
constexpr void apply_texture(sf::VertexArray& arr,
const uint32_t vertex_ammount,
const sf::Vector2f texture_size);
...