| 1234567891011121314151617181920212223 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #include <cycle/EngineParameter.hpp>
- using ls::atlantis::cycle::EngineParameter;
- using ls::atlantis::glossary::WindowApiTypes;
- EngineParameter::EngineParameter() = default;
- EngineParameter::~EngineParameter() = default;
- WindowApiTypes EngineParameter::getWindowApiType() const
- {
- return this->windowApiType;
- }
- void EngineParameter::setWindowApiType(const WindowApiTypes &_windowApiType)
- {
- this->windowApiType = _windowApiType;
- }
|