mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 05:45:10 +00:00
20 lines
273 B
C++
20 lines
273 B
C++
/*
|
|
** EPITECH PROJECT, 2021
|
|
** Bomberman
|
|
** File description:
|
|
** CameraProjection
|
|
*/
|
|
|
|
#ifndef CAMERAPROJECTION_HPP_
|
|
#define CAMERAPROJECTION_HPP_
|
|
|
|
#include <raylib.h>
|
|
|
|
namespace RAY::Camera {
|
|
|
|
typedef ::CameraProjection Projection;
|
|
|
|
}
|
|
|
|
#endif /* !CAMERAPROJECTION_HPP_ */
|