| 123456789101112131415161718 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_INPUT_KEYBOARD_KEY_MAP_HPP
- #define LS_ATLANTIS_ENGINE_INPUT_KEYBOARD_KEY_MAP_HPP
- #include <glossary/KeyboardKeys.hpp>
- #include <input/KeyStatus.hpp>
- #include <map>
- namespace ls::atlantis::input
- {
- using KeyboardKeyMap = ::std::map<ls::atlantis::glossary::KeyboardKeys, ls::atlantis::input::KeyStatus>;
- }
- #endif
|