EngineParameter.cpp 523 B

1234567891011121314151617181920212223
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #include <cycle/EngineParameter.hpp>
  6. using ls::atlantis::cycle::EngineParameter;
  7. using ls::atlantis::glossary::WindowApiTypes;
  8. EngineParameter::EngineParameter() = default;
  9. EngineParameter::~EngineParameter() = default;
  10. WindowApiTypes EngineParameter::getWindowApiType() const
  11. {
  12. return this->windowApiType;
  13. }
  14. void EngineParameter::setWindowApiType(const WindowApiTypes &_windowApiType)
  15. {
  16. this->windowApiType = _windowApiType;
  17. }