mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-05-26 15:58:12 +00:00
18 lines
209 B
C++
18 lines
209 B
C++
/*
|
|
** EPITECH PROJECT, 2021
|
|
** Bomberman
|
|
** File description:
|
|
** Matrix
|
|
*/
|
|
|
|
#ifndef MATRIX_HPP_
|
|
#define MATRIX_HPP_
|
|
|
|
#include <raylib.h>
|
|
|
|
namespace RAY {
|
|
typedef ::Matrix Matrix;
|
|
}
|
|
|
|
#endif /* !MATRIX_HPP_ */
|