| 123456789101112131415161718192021222324 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_CORE_I_WINDOW_API_HPP
- #define LS_ATLANTIS_ENGINE_CORE_I_WINDOW_API_HPP
- #include "StatusCode.hpp"
- namespace ls::atlantis::core::interfaces
- {
- class IWindowApi
- {
- public:
- IWindowApi();
- virtual ~IWindowApi();
- virtual StatusCode init() = 0;
- };
- }
- #endif
|