| 201 | } |
| 202 | |
| 203 | explicit Edge(sf::RenderTexture&& surface, sf::Texture&& backgroundTexture, sf::Texture&& entityTexture, sf::Shader&& shader) : |
| 204 | m_surface(std::move(surface)), |
| 205 | m_backgroundTexture(std::move(backgroundTexture)), |
| 206 | m_entityTexture(std::move(entityTexture)), |
| 207 | m_shader(std::move(shader)) |
| 208 | { |
| 209 | } |
| 210 | |
| 211 | private: |
| 212 | sf::RenderTexture m_surface; |
nothing calls this directly
no outgoing calls
no test coverage detected