/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* consts.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: kcolin +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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