/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* RT.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: TheRed +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/09/27 14:51:49 by TheRed #+# #+# */ /* Updated: 2024/09/27 14:51:49 by TheRed ### ########.fr */ /* */ /* ************************************************************************** */ #include "RT.hpp" int main(void) { Window window; GLFWwindow *win = window.getWindow(); while (!window.shouldClose()) { glClear(GL_COLOR_BUFFER_BIT); window.display(); window.pollEvents(); } return (0); }