mirror of
https://github.com/TheRedShip/RT_GPU.git
synced 2025-09-27 18:48:36 +02:00
27 lines
1.1 KiB
C++
27 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* RT.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: TheRed <TheRed@students.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/09/27 14:52:10 by TheRed #+# #+# */
|
|
/* Updated: 2024/09/27 14:52:10 by TheRed ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef RT__HPP
|
|
# define RT__HPP
|
|
|
|
# define WIDTH 1920
|
|
# define HEIGHT 1080
|
|
|
|
# include "glad/gl.h"
|
|
# include "GLFW/glfw3.h"
|
|
|
|
# include <iostream>
|
|
|
|
# include "Vector/Vector.hpp"
|
|
# include "Window.hpp"
|
|
|
|
#endif |