Files
Bomberman/lib/Ray/sources/Camera/ICamera.hpp
2021-05-22 01:14:21 +02:00

24 lines
337 B
C++

/*
** EPITECH PROJECT, 2021
** Bomberman
** File description:
** ICamera
*/
#ifndef ICAMERA_HPP_
#define ICAMERA_HPP_
#include "Matrix.hpp"
namespace RAY::Camera {
//! @brief Interface for Cameras
class ICamera {
public:
virtual ~ICamera() = default;
virtual Matrix getMatrix() const = 0;
};
}
#endif /* !ICAMERA_HPP_ */