| 1234567891011121314151617181920212223242526272829303132 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_FACTORY_KEYBOARD_FACTORY_HPP
- #define LS_ATLANTIS_ENGINE_FACTORY_KEYBOARD_FACTORY_HPP
- #include <Export.hpp>
- #include <glossary/WindowApiTypes.hpp>
- #include <input/KeyboardKeyMap.hpp>
- #include <interface/IKeyboard.hpp>
- #include <memory>
- namespace ls::atlantis::factory
- {
- class LS_ATLANTIS_DYNAMIC_GOAL KeyboardFactory
- {
- public:
- KeyboardFactory();
- ~KeyboardFactory();
- [[nodiscard]] static ::std::shared_ptr<ls::atlantis::interfaces::IKeyboard> build(const ls::atlantis::glossary::WindowApiTypes &_windowApis);
- private:
- [[nodiscard]] static ls::atlantis::input::KeyboardKeyMap _generateKeyMap();
- };
- }
- #endif
|