| 1234567891011121314151617181920212223 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_CYCLE_STATUS_CODE_WINDOW_CREATION_FAILED_HPP
- #define LS_ATLANTIS_ENGINE_CYCLE_STATUS_CODE_WINDOW_CREATION_FAILED_HPP
- #include <Export.hpp>
- #include <interface/AStatusCode.hpp>
- namespace ls::atlantis::cycle
- {
- class LS_ATLANTIS_DYNAMIC_GOAL StatusCodeWindowCreationFailed : public ls::atlantis::interfaces::AStatusCode
- {
- public:
- StatusCodeWindowCreationFailed();
- ~StatusCodeWindowCreationFailed() override;
- };
- }
- #endif
|