/* * 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 #include 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