IWindowApi.hpp 393 B

123456789101112131415161718192021222324
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #ifndef LS_ATLANTIS_ENGINE_CORE_I_WINDOW_API_HPP
  6. #define LS_ATLANTIS_ENGINE_CORE_I_WINDOW_API_HPP
  7. #include "StatusCode.hpp"
  8. namespace ls::atlantis::core::interfaces
  9. {
  10. class IWindowApi
  11. {
  12. public:
  13. IWindowApi();
  14. virtual ~IWindowApi();
  15. virtual StatusCode init() = 0;
  16. };
  17. }
  18. #endif