| 1234567891011121314151617181920212223242526 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_INTERFACE_WINDOW_API_HPP
- #define LS_ATLANTIS_ENGINE_INTERFACE_WINDOW_API_HPP
- #include <Export.hpp>
- #include <interface/AStatusCode.hpp>
- #include <memory>
- namespace ls::atlantis::interfaces
- {
- class LS_ATLANTIS_DYNAMIC_GOAL IWindowApi
- {
- public:
- IWindowApi();
- virtual ~IWindowApi();
- virtual ::std::shared_ptr<AStatusCode> init() = 0;
- };
- }
- #endif
|