Files
RayTracer/src/main.cpp
T

9 lines
109 B
C++
Raw Normal View History

2025-01-23 15:26:32 +01:00
#include "window/Window.h"
2025-01-23 12:33:39 +01:00
int main() {
2025-01-23 15:26:32 +01:00
Window w(1920, 1080);
while (true) {
w.update();
}
2025-01-23 12:33:39 +01:00
return 0;
}