├── Makefile ├── README.md ├── bonus_game ├── bitmap_offsets_bonus.c ├── bonuscub.h ├── cast_rays_bonus.c ├── cub3d_bonus.c ├── draw2_bonus.c ├── draw_bonus.c ├── events_bonus.c ├── ft_init_anim_bonus.c ├── ft_prepare_lines_bonus.c ├── lines_bonus.c ├── start_game_bonus.c ├── update_bonus.c ├── utils_attack_pickaxe_bonus.c └── utils_normal_pickaxe_bonus.c ├── cub3d.c ├── cubs ├── bonus.cub ├── test.cub └── test.txt ├── extract_and_parse ├── ft_parse.h ├── ft_parse_cub.c ├── ft_parse_map.c ├── ft_parse_map2.c ├── ft_parse_resolution.c ├── ft_parse_rgbs.c ├── ft_parse_textures.c ├── ft_parse_textures2.c ├── ft_parse_utils.c ├── ft_parse_utils2.c └── text_extract.c ├── includes ├── cub3d.h └── structs.h ├── libft ├── Makefile ├── ft_atoi.c ├── ft_bzero.c ├── ft_calloc.c ├── ft_isalnum.c ├── ft_isalpha.c ├── ft_isascii.c ├── ft_isdigit.c ├── ft_isprint.c ├── ft_itoa.c ├── ft_lstadd_back.c ├── ft_lstadd_front.c ├── ft_lstclear.c ├── ft_lstdelone.c ├── ft_lstiter.c ├── ft_lstlast.c ├── ft_lstmap.c ├── ft_lstnew.c ├── ft_lstsize.c ├── ft_memccpy.c ├── ft_memchr.c ├── ft_memcmp.c ├── ft_memcpy.c ├── ft_memmove.c ├── ft_memset.c ├── ft_putchar_fd.c ├── ft_putendl_fd.c ├── ft_putnbr_fd.c ├── ft_putstr_fd.c ├── ft_split.c ├── ft_strchr.c ├── ft_strdup.c ├── ft_strjoin.c ├── ft_strlcat.c ├── ft_strlcpy.c ├── ft_strlen.c ├── ft_strmapi.c ├── ft_strncmp.c ├── ft_strnstr.c ├── ft_strrchr.c ├── ft_strtrim.c ├── ft_substr.c ├── ft_tolower.c ├── ft_toupper.c ├── get_next_line.c ├── get_next_line.h ├── get_next_line_utils.c └── libft.h ├── mandatory_game ├── bitmap_offsets.c ├── bmp_screenshot.c ├── cast_rays.c ├── cast_rays_horizontal.c ├── cast_rays_vertical.c ├── color_utils.c ├── draw.c ├── draw2.c ├── events.c ├── ft_init.c ├── ft_init2.c ├── ft_initdestroyimg.c ├── ft_prepare_lines.c ├── horiz_vert_raycomp.c ├── lines.c ├── start_game.c ├── start_game.h ├── start_game_utils.c ├── start_game_utils2.c ├── start_game_utils3.c ├── update.c └── update_sprites.c ├── minilibx ├── Makefile ├── font.c ├── font.xcf ├── mlx.h ├── mlx_init_loop.m ├── mlx_int.h ├── mlx_int_str_to_wordtab.c ├── mlx_mouse.m ├── mlx_new_image.m ├── mlx_new_window.h ├── mlx_new_window.m ├── mlx_opengl.h ├── mlx_opengl.m ├── mlx_png.c ├── mlx_png.h ├── mlx_rgb.c ├── mlx_shaders.c └── mlx_xpm.c ├── other_utils ├── free_utils.c └── ft_error.c └── textures ├── attack_torch.xpm ├── barrel.xpm ├── creeper.xpm ├── grass.xpm ├── greystone.xpm ├── planks.jpeg ├── planks.xpm ├── purplestone.xpm ├── redbrick.xpm ├── torch.xpm └── wood.xpm /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/README.md -------------------------------------------------------------------------------- /bonus_game/bitmap_offsets_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/bitmap_offsets_bonus.c -------------------------------------------------------------------------------- /bonus_game/bonuscub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/bonuscub.h -------------------------------------------------------------------------------- /bonus_game/cast_rays_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/cast_rays_bonus.c -------------------------------------------------------------------------------- /bonus_game/cub3d_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/cub3d_bonus.c -------------------------------------------------------------------------------- /bonus_game/draw2_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/draw2_bonus.c -------------------------------------------------------------------------------- /bonus_game/draw_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/draw_bonus.c -------------------------------------------------------------------------------- /bonus_game/events_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/events_bonus.c -------------------------------------------------------------------------------- /bonus_game/ft_init_anim_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/ft_init_anim_bonus.c -------------------------------------------------------------------------------- /bonus_game/ft_prepare_lines_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/ft_prepare_lines_bonus.c -------------------------------------------------------------------------------- /bonus_game/lines_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/lines_bonus.c -------------------------------------------------------------------------------- /bonus_game/start_game_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/start_game_bonus.c -------------------------------------------------------------------------------- /bonus_game/update_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/update_bonus.c -------------------------------------------------------------------------------- /bonus_game/utils_attack_pickaxe_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/utils_attack_pickaxe_bonus.c -------------------------------------------------------------------------------- /bonus_game/utils_normal_pickaxe_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/bonus_game/utils_normal_pickaxe_bonus.c -------------------------------------------------------------------------------- /cub3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/cub3d.c -------------------------------------------------------------------------------- /cubs/bonus.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/cubs/bonus.cub -------------------------------------------------------------------------------- /cubs/test.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/cubs/test.cub -------------------------------------------------------------------------------- /cubs/test.txt: -------------------------------------------------------------------------------- 1 | ola 2 | -------------------------------------------------------------------------------- /extract_and_parse/ft_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse.h -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_cub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_cub.c -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_map.c -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_map2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_map2.c -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_resolution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_resolution.c -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_rgbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_rgbs.c -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_textures.c -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_textures2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_textures2.c -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_utils.c -------------------------------------------------------------------------------- /extract_and_parse/ft_parse_utils2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/ft_parse_utils2.c -------------------------------------------------------------------------------- /extract_and_parse/text_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/extract_and_parse/text_extract.c -------------------------------------------------------------------------------- /includes/cub3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/includes/cub3d.h -------------------------------------------------------------------------------- /includes/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/includes/structs.h -------------------------------------------------------------------------------- /libft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/Makefile -------------------------------------------------------------------------------- /libft/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_atoi.c -------------------------------------------------------------------------------- /libft/ft_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_bzero.c -------------------------------------------------------------------------------- /libft/ft_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_calloc.c -------------------------------------------------------------------------------- /libft/ft_isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_isalnum.c -------------------------------------------------------------------------------- /libft/ft_isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_isalpha.c -------------------------------------------------------------------------------- /libft/ft_isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_isascii.c -------------------------------------------------------------------------------- /libft/ft_isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_isdigit.c -------------------------------------------------------------------------------- /libft/ft_isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_isprint.c -------------------------------------------------------------------------------- /libft/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_itoa.c -------------------------------------------------------------------------------- /libft/ft_lstadd_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstadd_back.c -------------------------------------------------------------------------------- /libft/ft_lstadd_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstadd_front.c -------------------------------------------------------------------------------- /libft/ft_lstclear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstclear.c -------------------------------------------------------------------------------- /libft/ft_lstdelone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstdelone.c -------------------------------------------------------------------------------- /libft/ft_lstiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstiter.c -------------------------------------------------------------------------------- /libft/ft_lstlast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstlast.c -------------------------------------------------------------------------------- /libft/ft_lstmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstmap.c -------------------------------------------------------------------------------- /libft/ft_lstnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstnew.c -------------------------------------------------------------------------------- /libft/ft_lstsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_lstsize.c -------------------------------------------------------------------------------- /libft/ft_memccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_memccpy.c -------------------------------------------------------------------------------- /libft/ft_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_memchr.c -------------------------------------------------------------------------------- /libft/ft_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_memcmp.c -------------------------------------------------------------------------------- /libft/ft_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_memcpy.c -------------------------------------------------------------------------------- /libft/ft_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_memmove.c -------------------------------------------------------------------------------- /libft/ft_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_memset.c -------------------------------------------------------------------------------- /libft/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_putchar_fd.c -------------------------------------------------------------------------------- /libft/ft_putendl_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_putendl_fd.c -------------------------------------------------------------------------------- /libft/ft_putnbr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_putnbr_fd.c -------------------------------------------------------------------------------- /libft/ft_putstr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_putstr_fd.c -------------------------------------------------------------------------------- /libft/ft_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_split.c -------------------------------------------------------------------------------- /libft/ft_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strchr.c -------------------------------------------------------------------------------- /libft/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strdup.c -------------------------------------------------------------------------------- /libft/ft_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strjoin.c -------------------------------------------------------------------------------- /libft/ft_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strlcat.c -------------------------------------------------------------------------------- /libft/ft_strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strlcpy.c -------------------------------------------------------------------------------- /libft/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strlen.c -------------------------------------------------------------------------------- /libft/ft_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strmapi.c -------------------------------------------------------------------------------- /libft/ft_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strncmp.c -------------------------------------------------------------------------------- /libft/ft_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strnstr.c -------------------------------------------------------------------------------- /libft/ft_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strrchr.c -------------------------------------------------------------------------------- /libft/ft_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_strtrim.c -------------------------------------------------------------------------------- /libft/ft_substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_substr.c -------------------------------------------------------------------------------- /libft/ft_tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_tolower.c -------------------------------------------------------------------------------- /libft/ft_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/ft_toupper.c -------------------------------------------------------------------------------- /libft/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/get_next_line.c -------------------------------------------------------------------------------- /libft/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/get_next_line.h -------------------------------------------------------------------------------- /libft/get_next_line_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/get_next_line_utils.c -------------------------------------------------------------------------------- /libft/libft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/libft/libft.h -------------------------------------------------------------------------------- /mandatory_game/bitmap_offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/bitmap_offsets.c -------------------------------------------------------------------------------- /mandatory_game/bmp_screenshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/bmp_screenshot.c -------------------------------------------------------------------------------- /mandatory_game/cast_rays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/cast_rays.c -------------------------------------------------------------------------------- /mandatory_game/cast_rays_horizontal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/cast_rays_horizontal.c -------------------------------------------------------------------------------- /mandatory_game/cast_rays_vertical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/cast_rays_vertical.c -------------------------------------------------------------------------------- /mandatory_game/color_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/color_utils.c -------------------------------------------------------------------------------- /mandatory_game/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/draw.c -------------------------------------------------------------------------------- /mandatory_game/draw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/draw2.c -------------------------------------------------------------------------------- /mandatory_game/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/events.c -------------------------------------------------------------------------------- /mandatory_game/ft_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/ft_init.c -------------------------------------------------------------------------------- /mandatory_game/ft_init2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/ft_init2.c -------------------------------------------------------------------------------- /mandatory_game/ft_initdestroyimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/ft_initdestroyimg.c -------------------------------------------------------------------------------- /mandatory_game/ft_prepare_lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/ft_prepare_lines.c -------------------------------------------------------------------------------- /mandatory_game/horiz_vert_raycomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/horiz_vert_raycomp.c -------------------------------------------------------------------------------- /mandatory_game/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/lines.c -------------------------------------------------------------------------------- /mandatory_game/start_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/start_game.c -------------------------------------------------------------------------------- /mandatory_game/start_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/start_game.h -------------------------------------------------------------------------------- /mandatory_game/start_game_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/start_game_utils.c -------------------------------------------------------------------------------- /mandatory_game/start_game_utils2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/start_game_utils2.c -------------------------------------------------------------------------------- /mandatory_game/start_game_utils3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/start_game_utils3.c -------------------------------------------------------------------------------- /mandatory_game/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/update.c -------------------------------------------------------------------------------- /mandatory_game/update_sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/mandatory_game/update_sprites.c -------------------------------------------------------------------------------- /minilibx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/Makefile -------------------------------------------------------------------------------- /minilibx/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/font.c -------------------------------------------------------------------------------- /minilibx/font.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/font.xcf -------------------------------------------------------------------------------- /minilibx/mlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx.h -------------------------------------------------------------------------------- /minilibx/mlx_init_loop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_init_loop.m -------------------------------------------------------------------------------- /minilibx/mlx_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_int.h -------------------------------------------------------------------------------- /minilibx/mlx_int_str_to_wordtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_int_str_to_wordtab.c -------------------------------------------------------------------------------- /minilibx/mlx_mouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_mouse.m -------------------------------------------------------------------------------- /minilibx/mlx_new_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_new_image.m -------------------------------------------------------------------------------- /minilibx/mlx_new_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_new_window.h -------------------------------------------------------------------------------- /minilibx/mlx_new_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_new_window.m -------------------------------------------------------------------------------- /minilibx/mlx_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_opengl.h -------------------------------------------------------------------------------- /minilibx/mlx_opengl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_opengl.m -------------------------------------------------------------------------------- /minilibx/mlx_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_png.c -------------------------------------------------------------------------------- /minilibx/mlx_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_png.h -------------------------------------------------------------------------------- /minilibx/mlx_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_rgb.c -------------------------------------------------------------------------------- /minilibx/mlx_shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_shaders.c -------------------------------------------------------------------------------- /minilibx/mlx_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/minilibx/mlx_xpm.c -------------------------------------------------------------------------------- /other_utils/free_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/other_utils/free_utils.c -------------------------------------------------------------------------------- /other_utils/ft_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/other_utils/ft_error.c -------------------------------------------------------------------------------- /textures/attack_torch.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/attack_torch.xpm -------------------------------------------------------------------------------- /textures/barrel.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/barrel.xpm -------------------------------------------------------------------------------- /textures/creeper.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/creeper.xpm -------------------------------------------------------------------------------- /textures/grass.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/grass.xpm -------------------------------------------------------------------------------- /textures/greystone.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/greystone.xpm -------------------------------------------------------------------------------- /textures/planks.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/planks.jpeg -------------------------------------------------------------------------------- /textures/planks.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/planks.xpm -------------------------------------------------------------------------------- /textures/purplestone.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/purplestone.xpm -------------------------------------------------------------------------------- /textures/redbrick.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/redbrick.xpm -------------------------------------------------------------------------------- /textures/torch.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/torch.xpm -------------------------------------------------------------------------------- /textures/wood.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleal42/cub3d/HEAD/textures/wood.xpm --------------------------------------------------------------------------------