1
0

🏗️」 wip(DDA): distant calculated correctly 👍

This commit is contained in:
2024-10-08 21:51:52 +02:00
parent 02cf47a5fe
commit 24da8e8c27
5 changed files with 14 additions and 12 deletions

View File

@ -6,7 +6,7 @@
# By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2024/10/07 16:02:18 by adjoly #+# #+# #
# Updated: 2024/10/07 16:02:44 by adjoly ### ########.fr #
# Updated: 2024/10/08 21:44:52 by adjoly ### ########.fr #
# #
# **************************************************************************** #
@ -14,7 +14,7 @@ SHELL = bash
NAME = cub3D
CC = gcc
CC = clang
OBJSDIR = obj/

View File

@ -6,25 +6,26 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/11 16:38:40 by adjoly #+# #+# */
/* Updated: 2024/10/06 18:48:33 by adjoly ### ########.fr */
/* Updated: 2024/10/08 21:42:52 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GAME_H
# define GAME_H
# include <unistd.h>
# include <stdint.h>
# include <math.h>
# include <stdbool.h>
# include <stdlib.h>
# include <stddef.h>
# include <stdio.h>
# include "dda.h"
# include "settings.h"
# include "parsing.h"
# include "typedef.h"
# include <stdint.h>
# include <stdlib.h>
# include <math.h>
# include <stdbool.h>
# include <unistd.h>
/**
* @brief This function is used to handle keypress
*

View File

@ -6,11 +6,12 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/08 13:26:19 by adjoly #+# #+# */
/* Updated: 2024/10/08 13:53:27 by adjoly ### ########.fr */
/* Updated: 2024/10/08 21:40:08 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "game/dda.h"
#include <stdint.h>
#include <stddef.h>
#include "game/settings.h"

View File