feat: let user do something on each iteration

This commit is contained in:
2026-02-13 09:49:56 +01:00
parent d20f393278
commit 696d55db02
2 changed files with 14 additions and 7 deletions

View File

@@ -10,7 +10,10 @@ int main(int argc, char **argv) {
Renderer::GetInstance();
Window window(720, 480);
window.Run();
while (window.Running()) {
}
return 0;
}