mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-20 13:25:10 +00:00
24 lines
337 B
C++
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_ */
|