Noise-generator/srcs/main.cpp
2024-12-13 02:53:00 +01:00

12 lines
164 B
C++

#include "windowManager/WindowManager.hpp"
#define WIDTH 500
#define HEIGHT 800
int main() {
WindowManager window(WIDTH, HEIGHT);
window.loop();
return 0;
}