+ | Vector classes

This commit is contained in:
TheRedShip
2024-10-13 18:06:57 +02:00
parent 8784b5ce02
commit 0bd05282cf
10 changed files with 407 additions and 33 deletions

27
includes/RT.hpp Normal file
View File

@ -0,0 +1,27 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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