> For the complete documentation index, see [llms.txt](https://cavonstavants-organization.gitbook.io/rtype-technical-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cavonstavants-organization.gitbook.io/rtype-technical-documentation/index_files/_input_map_8hpp.md).

# InputMap.hpp

## Namespaces

| Name                                                                                                                    |
| ----------------------------------------------------------------------------------------------------------------------- |
| [**utils**](https://github.com/TEAM-AAAAAAAAAAAAAAAA/RTYPE-TECHNICAL-DOCS/blob/main/Files/Namespaces/namespaceutils.md) |

## Source code

```cpp
/*
** 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);

};
```

***

Updated on 2022-11-13 at 17:21:37 +0100
