| 9 | namespace |
| 10 | { |
| 11 | std::filesystem::path resourcesDir() |
| 12 | { |
| 13 | #ifdef SFML_SYSTEM_IOS |
| 14 | return ""; |
| 15 | #else |
| 16 | return "resources"; |
| 17 | #endif |
| 18 | } |
| 19 | std::string vec2ToString(const sf::Vector2i vec2) |
| 20 | { |
| 21 | return '(' + std::to_string(vec2.x) + ", " + std::to_string(vec2.y) + ')'; |