KeyboardKeys.hpp 313 B

123456789101112131415161718
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #ifndef LS_ATLANTIS_ENGINE_GLOSSARY_KEYBOARD_KEYS_HPP
  6. #define LS_ATLANTIS_ENGINE_GLOSSARY_KEYBOARD_KEYS_HPP
  7. namespace ls::atlantis::glossary
  8. {
  9. enum class KeyboardKeys
  10. {
  11. NONE_SELECTED = 0,
  12. ESCAPE = 1
  13. };
  14. }
  15. #endif