Files
Bomberman/lib/Ray/sources/Camera/ICamera.hpp
2021-05-21 09:48:13 +02:00

23 lines
333 B
C++

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