/* * author: Patrick-Christopher Mattulat * e-mail: webmaster@lynarstudios.com */ #include 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; }