Files
RT_GPU/includes/Camera.hpp
2024-10-15 14:11:49 +02:00

31 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Camera.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: TheRed <TheRed@students.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 13:59:57 by TheRed #+# #+# */
/* Updated: 2024/10/15 13:59:57 by TheRed ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef RT_CAMERA__HPP
# define RT_CAMERA__HPP
class Camera
{
public:
Camera(void);
Camera(Camera const &src);
~Camera(void);
Camera &operator=(Camera const &rhs);
private:
};
#endif