| 12345678910111213141516171819202122232425 |
- #ifndef SAURA_APP_HPP_
- #define SAURA_APP_HPP_
- #include "saura/core/os/os.hpp"
- #include <SDL3/SDL_render.h>
- #include <SDL3/SDL_video.h>
- #include <memory>
- namespace saura {
- class App {
- private:
- std::unique_ptr<os::Context> os_ctx;
- bool is_running;
- public:
- App();
- ~App();
- void run();
- };
- } // namespace saura
- #endif
|