mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
21 lines
1 KiB
C
21 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* cub3d_consts.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchampio <tchampio@student.42lehavre. +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/06/06 17:42:23 by tchampio #+# #+# */
|
|
/* Updated: 2025/07/09 17:05:10 by tchampio ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CUB3D_CONSTS_H
|
|
# define CUB3D_CONSTS_H
|
|
|
|
# define HEIGHT 800
|
|
# define WIDTH 800
|
|
# define RESSOURCE_DIR "ressources"
|
|
# define MOVEMENT_SPEED 10.0
|
|
|
|
#endif
|