/* * author: Patrick-Christopher Mattulat * e-mail: webmaster@lynarstudios.com */ #ifndef LS_ATLANTIS_ENGINE_CYCLE_TEST_WINDOW_API_MOCK_HPP #define LS_ATLANTIS_ENGINE_CYCLE_TEST_WINDOW_API_MOCK_HPP #include namespace ls::atlantis::cycle::test { class WindowApiMock : public ls::atlantis::interfaces::IWindowApi { public: WindowApiMock(); ~WindowApiMock() override; [[nodiscard]] ls::atlantis::glossary::WindowApiTypes getWindowApiType() override; [[nodiscard]] ls::atlantis::interfaces::AStatusCode init() override; }; } #endif