create SDL window
Some checks failed
Build and Test verification / build (push) Failing after 26s
Build and Test verification / test (push) Has been skipped

This commit is contained in:
2026-05-09 15:36:53 -05:00
parent c3afcadc0f
commit f72bd8c44f
7 changed files with 151 additions and 28 deletions

View File

@@ -4,16 +4,20 @@
#include <iostream>
#include <cstdint>
#include "Window.hpp"
class App {
public:
App() = default;
public:
App();
~App() = default;
void run();
int32_t run();
private:
private:
int32_t foo();
Window* window_;
bool rendering_ = true;
};