42_cube3D/game/raycasting.c

21 lines
1004 B
C
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* raycasting.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/27 14:30:29 by erey-bet #+# #+# */
/* Updated: 2023/04/27 14:36:06 by erey-bet ### ########.fr */
/* */
/* ************************************************************************** */
#include "game.h"
int raycasting(t_game *game)
{
(void)game;
write(1, "raycasting...\n", 14);
return (0);
}