| 123456789101112131415161718192021222324252627282930 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_CYCLE_ENGINE_PARAMETER_HPP
- #define LS_ATLANTIS_ENGINE_CYCLE_ENGINE_PARAMETER_HPP
- #include <Export.hpp>
- #include <glossary/WindowApiTypes.hpp>
- namespace ls::atlantis::cycle
- {
- class LS_ATLANTIS_DYNAMIC_GOAL EngineParameter
- {
- public:
- EngineParameter();
- ~EngineParameter();
- [[nodiscard]] ls::atlantis::glossary::WindowApiTypes getWindowApiType() const;
- void setWindowApiType(const ls::atlantis::glossary::WindowApiTypes &_windowApiType);
- private:
- ls::atlantis::glossary::WindowApiTypes windowApiType{};
- };
- }
- #endif
|