/*
** EPITECH PROJECT, 2022
** rtype
** File description:
** InputMap
*/
#pragma once
#include <SFML/Window/Keyboard.hpp>
#include <string>
namespace utils {
std::string toString(sf::Keyboard::Key key);
sf::Keyboard::Key toKey(std::string string);
};