mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* consts.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: kcolin <kcolin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/07/17 14:54:36 by kcolin #+# #+# */
|
|
/* Updated: 2025/07/31 14:42:33 by tchampio ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CONSTS_H
|
|
# define CONSTS_H
|
|
|
|
# define HEIGHT 800
|
|
# define WIDTH 800
|
|
|
|
# define SIZE 64
|
|
# define MAP_SIZE 20
|
|
# define RESSOURCE_DIR "ressources"
|
|
# define MOVEMENT_SPEED 0.0001
|
|
# define ROTATION_SPEED 0.01
|
|
# define PLANE_VALUE 0.66
|
|
# define TEXTURE_SIZE 64
|
|
# ifdef BONUS
|
|
# define COMPILED_TEXT "Compiled with bonuses"
|
|
# else
|
|
# define COMPILED_TEXT " "
|
|
# endif
|
|
|
|
#endif
|