├── Makefile ├── README.md ├── get_next_line ├── get_next_line.c ├── get_next_line.h └── get_next_line_utils.c ├── 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 └── libft.h ├── main.c ├── map ├── furniture.ber ├── piano.ber ├── valid_map.ber └── valid_map2.ber ├── mlx ├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.mk ├── README.md ├── configure ├── man │ ├── man1 │ │ ├── mlx.1 │ │ ├── mlx_loop.1 │ │ ├── mlx_new_image.1 │ │ ├── mlx_new_window.1 │ │ └── mlx_pixel_put.1 │ └── man3 │ │ ├── mlx.3 │ │ ├── mlx_loop.3 │ │ ├── mlx_new_image.3 │ │ ├── mlx_new_window.3 │ │ └── mlx_pixel_put.3 ├── mlx.h ├── mlx_clear_window.c ├── mlx_destroy_display.c ├── mlx_destroy_image.c ├── mlx_destroy_window.c ├── mlx_expose_hook.c ├── mlx_ext_randr.c ├── mlx_flush_event.c ├── mlx_get_color_value.c ├── mlx_get_data_addr.c ├── mlx_hook.c ├── mlx_init.c ├── mlx_int.h ├── mlx_int_anti_resize_win.c ├── mlx_int_do_nothing.c ├── mlx_int_get_visual.c ├── mlx_int_param_event.c ├── mlx_int_set_win_event_mask.c ├── mlx_int_str_to_wordtab.c ├── mlx_int_wait_first_expose.c ├── mlx_key_hook.c ├── mlx_lib_xpm.c ├── mlx_loop.c ├── mlx_loop_hook.c ├── mlx_mouse.c ├── mlx_mouse_hook.c ├── mlx_new_image.c ├── mlx_new_window.c ├── mlx_pixel_put.c ├── mlx_put_image_to_window.c ├── mlx_rgb.c ├── mlx_screen_size.c ├── mlx_set_font.c ├── mlx_string_put.c ├── mlx_xpm.c ├── mlx_xpm.c.ok ├── rgb2c.pl └── test │ ├── Makefile.mk │ ├── main.c │ ├── new_win.c │ ├── open.xpm │ ├── open24.xpm │ ├── open30.xpm │ └── run_tests.sh ├── so_long.h ├── srcs ├── check_errors.c ├── check_map_elem.c ├── clean_images.c ├── draw_2_lenght_wall.c ├── draw_button.c ├── draw_collectibles.c ├── draw_dialogbox.c ├── draw_exit.c ├── draw_furnitures.c ├── draw_furnitures2.c ├── draw_furnitures_cond.c ├── draw_map.c ├── draw_on_images.c ├── draw_player.c ├── draw_stats.c ├── draw_trap.c ├── exec_events.c ├── exec_moves.c ├── exit.c ├── ft_putpixel.c ├── get_images.c ├── get_images2.c ├── get_map.c ├── handle_event.c ├── handle_keypress.c ├── initialize.c ├── initialize_functionnalities.c ├── initialize_objects.c ├── main.c ├── move.c ├── norme1.c ├── norme2.c ├── norme3.c ├── norme4.c └── write_event.c └── textures ├── 960_448.xpm ├── CUT_ladder.xpm ├── CUT_ladder_right.xpm ├── FINAL2_left.xpm ├── FINAL2_right.xpm ├── babolex_painting2.xpm ├── book.xpm ├── box.xpm ├── cardboard.png ├── cardboard.xpm ├── chimney_bl.xpm ├── chimney_bottom.xpm ├── chimney_bottom2.xpm ├── chimney_br.xpm ├── chimney_ml.xpm ├── chimney_mr.xpm ├── chimney_tl.xpm ├── chimney_top.xpm ├── chimney_tr.xpm ├── commode_sized_cut (1).png ├── commode_sized_cut.png ├── damages_back.xpm ├── damages_front.xpm ├── damages_sideleft.xpm ├── damages_sideright.xpm ├── dead_wife_960.xpm ├── detective_backside.xpm ├── detective_frontside.xpm ├── detective_sideleft.xpm ├── detective_sideright.xpm ├── dialog_box_left.png ├── dialog_box_left.xpm ├── dialog_box_mid.png ├── dialog_box_mid.xpm ├── dialog_box_right.png ├── dialog_box_right.xpm ├── dresser3 (1).png ├── dresser3 (2).png ├── dresser3 (3).png ├── dresser3_downleft.xpm ├── dresser3_downright.xpm ├── dresser3_topleft.xpm ├── dresser3_topright.xpm ├── dresser_downleft.png ├── dresser_downleft.xpm ├── dresser_downright.png ├── dresser_downright.xpm ├── dresser_half_left.xpm ├── dresser_half_right.xpm ├── dresser_topleft.png ├── dresser_topleft.xpm ├── dresser_topright.png ├── dresser_topright.xpm ├── flame_1.xpm ├── flame_2.xpm ├── flame_3.xpm ├── flame_4.xpm ├── flame_5.xpm ├── flame_6.xpm ├── flame_7.xpm ├── flame_8.xpm ├── floor.xpm ├── floor_half_left.xpm ├── floor_half_right.xpm ├── full_heart_2.png ├── full_heart_2.xpm ├── glass_rotated.xpm ├── hole_left.xpm ├── hole_right.xpm ├── house_960.xpm ├── key_e.png ├── key_e.xpm ├── key_o.png ├── key_o.xpm ├── key_p.png ├── key_p.xpm ├── ladder_half_left.xpm ├── ladder_half_right.xpm ├── murder_article.png ├── murder_article.xpm ├── murderer_960.xpm ├── newspaper.xpm ├── piano_downleft.png ├── piano_downleft.xpm ├── piano_downmid.png ├── piano_downmid.xpm ├── piano_downright.png ├── piano_downright.xpm ├── piano_midleft.png ├── piano_midleft.xpm ├── piano_midmid.png ├── piano_midmid.xpm ├── piano_midright.png ├── piano_midright.xpm ├── piano_topleft.xpm ├── piano_topmid.png ├── piano_topmid.xpm ├── piano_topright.png ├── piano_topright.xpm ├── pot.xpm ├── preview_dialogbox.png ├── preview_key_event.png ├── preview_story.png ├── rainy_960.xpm ├── shoes.xpm ├── spike.png ├── spike.xpm ├── subject.png ├── trapdoor_cut_left.xpm ├── trapdoor_cut_right.xpm ├── trapdoor_on_floor_left.xpm ├── trapdoor_on_floor_right.xpm ├── trapdoor_oriented_left.xpm ├── trapdoor_oriented_right.xpm ├── typeface_life.xpm ├── typeface_life_2.xpm ├── wall.xpm ├── wanted.png ├── wanted.xpm ├── white_empty_heart.xpm ├── white_full_heart.xpm └── working_desk_960.xpm /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/README.md -------------------------------------------------------------------------------- /get_next_line/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/get_next_line/get_next_line.c -------------------------------------------------------------------------------- /get_next_line/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/get_next_line/get_next_line.h -------------------------------------------------------------------------------- /get_next_line/get_next_line_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/get_next_line/get_next_line_utils.c -------------------------------------------------------------------------------- /libft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/Makefile -------------------------------------------------------------------------------- /libft/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_atoi.c -------------------------------------------------------------------------------- /libft/ft_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_bzero.c -------------------------------------------------------------------------------- /libft/ft_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_calloc.c -------------------------------------------------------------------------------- /libft/ft_isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_isalnum.c -------------------------------------------------------------------------------- /libft/ft_isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_isalpha.c -------------------------------------------------------------------------------- /libft/ft_isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_isascii.c -------------------------------------------------------------------------------- /libft/ft_isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_isdigit.c -------------------------------------------------------------------------------- /libft/ft_isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_isprint.c -------------------------------------------------------------------------------- /libft/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_itoa.c -------------------------------------------------------------------------------- /libft/ft_lstadd_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstadd_back.c -------------------------------------------------------------------------------- /libft/ft_lstadd_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstadd_front.c -------------------------------------------------------------------------------- /libft/ft_lstclear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstclear.c -------------------------------------------------------------------------------- /libft/ft_lstdelone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstdelone.c -------------------------------------------------------------------------------- /libft/ft_lstiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstiter.c -------------------------------------------------------------------------------- /libft/ft_lstlast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstlast.c -------------------------------------------------------------------------------- /libft/ft_lstmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstmap.c -------------------------------------------------------------------------------- /libft/ft_lstnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstnew.c -------------------------------------------------------------------------------- /libft/ft_lstsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_lstsize.c -------------------------------------------------------------------------------- /libft/ft_memccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_memccpy.c -------------------------------------------------------------------------------- /libft/ft_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_memchr.c -------------------------------------------------------------------------------- /libft/ft_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_memcmp.c -------------------------------------------------------------------------------- /libft/ft_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_memcpy.c -------------------------------------------------------------------------------- /libft/ft_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_memmove.c -------------------------------------------------------------------------------- /libft/ft_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_memset.c -------------------------------------------------------------------------------- /libft/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_putchar_fd.c -------------------------------------------------------------------------------- /libft/ft_putendl_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_putendl_fd.c -------------------------------------------------------------------------------- /libft/ft_putnbr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_putnbr_fd.c -------------------------------------------------------------------------------- /libft/ft_putstr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_putstr_fd.c -------------------------------------------------------------------------------- /libft/ft_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_split.c -------------------------------------------------------------------------------- /libft/ft_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strchr.c -------------------------------------------------------------------------------- /libft/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strdup.c -------------------------------------------------------------------------------- /libft/ft_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strjoin.c -------------------------------------------------------------------------------- /libft/ft_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strlcat.c -------------------------------------------------------------------------------- /libft/ft_strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strlcpy.c -------------------------------------------------------------------------------- /libft/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strlen.c -------------------------------------------------------------------------------- /libft/ft_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strmapi.c -------------------------------------------------------------------------------- /libft/ft_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strncmp.c -------------------------------------------------------------------------------- /libft/ft_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strnstr.c -------------------------------------------------------------------------------- /libft/ft_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strrchr.c -------------------------------------------------------------------------------- /libft/ft_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_strtrim.c -------------------------------------------------------------------------------- /libft/ft_substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_substr.c -------------------------------------------------------------------------------- /libft/ft_tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_tolower.c -------------------------------------------------------------------------------- /libft/ft_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/ft_toupper.c -------------------------------------------------------------------------------- /libft/libft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/libft/libft.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/main.c -------------------------------------------------------------------------------- /map/furniture.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/map/furniture.ber -------------------------------------------------------------------------------- /map/piano.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/map/piano.ber -------------------------------------------------------------------------------- /map/valid_map.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/map/valid_map.ber -------------------------------------------------------------------------------- /map/valid_map2.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/map/valid_map2.ber -------------------------------------------------------------------------------- /mlx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/.gitignore -------------------------------------------------------------------------------- /mlx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/LICENSE -------------------------------------------------------------------------------- /mlx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/Makefile -------------------------------------------------------------------------------- /mlx/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/Makefile.mk -------------------------------------------------------------------------------- /mlx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/README.md -------------------------------------------------------------------------------- /mlx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/configure -------------------------------------------------------------------------------- /mlx/man/man1/mlx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man1/mlx.1 -------------------------------------------------------------------------------- /mlx/man/man1/mlx_loop.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man1/mlx_loop.1 -------------------------------------------------------------------------------- /mlx/man/man1/mlx_new_image.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man1/mlx_new_image.1 -------------------------------------------------------------------------------- /mlx/man/man1/mlx_new_window.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man1/mlx_new_window.1 -------------------------------------------------------------------------------- /mlx/man/man1/mlx_pixel_put.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man1/mlx_pixel_put.1 -------------------------------------------------------------------------------- /mlx/man/man3/mlx.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man3/mlx.3 -------------------------------------------------------------------------------- /mlx/man/man3/mlx_loop.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man3/mlx_loop.3 -------------------------------------------------------------------------------- /mlx/man/man3/mlx_new_image.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man3/mlx_new_image.3 -------------------------------------------------------------------------------- /mlx/man/man3/mlx_new_window.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man3/mlx_new_window.3 -------------------------------------------------------------------------------- /mlx/man/man3/mlx_pixel_put.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/man/man3/mlx_pixel_put.3 -------------------------------------------------------------------------------- /mlx/mlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx.h -------------------------------------------------------------------------------- /mlx/mlx_clear_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_clear_window.c -------------------------------------------------------------------------------- /mlx/mlx_destroy_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_destroy_display.c -------------------------------------------------------------------------------- /mlx/mlx_destroy_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_destroy_image.c -------------------------------------------------------------------------------- /mlx/mlx_destroy_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_destroy_window.c -------------------------------------------------------------------------------- /mlx/mlx_expose_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_expose_hook.c -------------------------------------------------------------------------------- /mlx/mlx_ext_randr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_ext_randr.c -------------------------------------------------------------------------------- /mlx/mlx_flush_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_flush_event.c -------------------------------------------------------------------------------- /mlx/mlx_get_color_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_get_color_value.c -------------------------------------------------------------------------------- /mlx/mlx_get_data_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_get_data_addr.c -------------------------------------------------------------------------------- /mlx/mlx_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_hook.c -------------------------------------------------------------------------------- /mlx/mlx_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_init.c -------------------------------------------------------------------------------- /mlx/mlx_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_int.h -------------------------------------------------------------------------------- /mlx/mlx_int_anti_resize_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_int_anti_resize_win.c -------------------------------------------------------------------------------- /mlx/mlx_int_do_nothing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_int_do_nothing.c -------------------------------------------------------------------------------- /mlx/mlx_int_get_visual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_int_get_visual.c -------------------------------------------------------------------------------- /mlx/mlx_int_param_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_int_param_event.c -------------------------------------------------------------------------------- /mlx/mlx_int_set_win_event_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_int_set_win_event_mask.c -------------------------------------------------------------------------------- /mlx/mlx_int_str_to_wordtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_int_str_to_wordtab.c -------------------------------------------------------------------------------- /mlx/mlx_int_wait_first_expose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_int_wait_first_expose.c -------------------------------------------------------------------------------- /mlx/mlx_key_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_key_hook.c -------------------------------------------------------------------------------- /mlx/mlx_lib_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_lib_xpm.c -------------------------------------------------------------------------------- /mlx/mlx_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_loop.c -------------------------------------------------------------------------------- /mlx/mlx_loop_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_loop_hook.c -------------------------------------------------------------------------------- /mlx/mlx_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_mouse.c -------------------------------------------------------------------------------- /mlx/mlx_mouse_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_mouse_hook.c -------------------------------------------------------------------------------- /mlx/mlx_new_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_new_image.c -------------------------------------------------------------------------------- /mlx/mlx_new_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_new_window.c -------------------------------------------------------------------------------- /mlx/mlx_pixel_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_pixel_put.c -------------------------------------------------------------------------------- /mlx/mlx_put_image_to_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_put_image_to_window.c -------------------------------------------------------------------------------- /mlx/mlx_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_rgb.c -------------------------------------------------------------------------------- /mlx/mlx_screen_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_screen_size.c -------------------------------------------------------------------------------- /mlx/mlx_set_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_set_font.c -------------------------------------------------------------------------------- /mlx/mlx_string_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_string_put.c -------------------------------------------------------------------------------- /mlx/mlx_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_xpm.c -------------------------------------------------------------------------------- /mlx/mlx_xpm.c.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/mlx_xpm.c.ok -------------------------------------------------------------------------------- /mlx/rgb2c.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/rgb2c.pl -------------------------------------------------------------------------------- /mlx/test/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/test/Makefile.mk -------------------------------------------------------------------------------- /mlx/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/test/main.c -------------------------------------------------------------------------------- /mlx/test/new_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/test/new_win.c -------------------------------------------------------------------------------- /mlx/test/open.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/test/open.xpm -------------------------------------------------------------------------------- /mlx/test/open24.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/test/open24.xpm -------------------------------------------------------------------------------- /mlx/test/open30.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/test/open30.xpm -------------------------------------------------------------------------------- /mlx/test/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/mlx/test/run_tests.sh -------------------------------------------------------------------------------- /so_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/so_long.h -------------------------------------------------------------------------------- /srcs/check_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/check_errors.c -------------------------------------------------------------------------------- /srcs/check_map_elem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/check_map_elem.c -------------------------------------------------------------------------------- /srcs/clean_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/clean_images.c -------------------------------------------------------------------------------- /srcs/draw_2_lenght_wall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_2_lenght_wall.c -------------------------------------------------------------------------------- /srcs/draw_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_button.c -------------------------------------------------------------------------------- /srcs/draw_collectibles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_collectibles.c -------------------------------------------------------------------------------- /srcs/draw_dialogbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_dialogbox.c -------------------------------------------------------------------------------- /srcs/draw_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_exit.c -------------------------------------------------------------------------------- /srcs/draw_furnitures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_furnitures.c -------------------------------------------------------------------------------- /srcs/draw_furnitures2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_furnitures2.c -------------------------------------------------------------------------------- /srcs/draw_furnitures_cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_furnitures_cond.c -------------------------------------------------------------------------------- /srcs/draw_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_map.c -------------------------------------------------------------------------------- /srcs/draw_on_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_on_images.c -------------------------------------------------------------------------------- /srcs/draw_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_player.c -------------------------------------------------------------------------------- /srcs/draw_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_stats.c -------------------------------------------------------------------------------- /srcs/draw_trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/draw_trap.c -------------------------------------------------------------------------------- /srcs/exec_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/exec_events.c -------------------------------------------------------------------------------- /srcs/exec_moves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/exec_moves.c -------------------------------------------------------------------------------- /srcs/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/exit.c -------------------------------------------------------------------------------- /srcs/ft_putpixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/ft_putpixel.c -------------------------------------------------------------------------------- /srcs/get_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/get_images.c -------------------------------------------------------------------------------- /srcs/get_images2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/get_images2.c -------------------------------------------------------------------------------- /srcs/get_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/get_map.c -------------------------------------------------------------------------------- /srcs/handle_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/handle_event.c -------------------------------------------------------------------------------- /srcs/handle_keypress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/handle_keypress.c -------------------------------------------------------------------------------- /srcs/initialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/initialize.c -------------------------------------------------------------------------------- /srcs/initialize_functionnalities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/initialize_functionnalities.c -------------------------------------------------------------------------------- /srcs/initialize_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/initialize_objects.c -------------------------------------------------------------------------------- /srcs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/main.c -------------------------------------------------------------------------------- /srcs/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/move.c -------------------------------------------------------------------------------- /srcs/norme1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/norme1.c -------------------------------------------------------------------------------- /srcs/norme2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/norme2.c -------------------------------------------------------------------------------- /srcs/norme3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/norme3.c -------------------------------------------------------------------------------- /srcs/norme4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/norme4.c -------------------------------------------------------------------------------- /srcs/write_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/srcs/write_event.c -------------------------------------------------------------------------------- /textures/960_448.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/960_448.xpm -------------------------------------------------------------------------------- /textures/CUT_ladder.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/CUT_ladder.xpm -------------------------------------------------------------------------------- /textures/CUT_ladder_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/CUT_ladder_right.xpm -------------------------------------------------------------------------------- /textures/FINAL2_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/FINAL2_left.xpm -------------------------------------------------------------------------------- /textures/FINAL2_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/FINAL2_right.xpm -------------------------------------------------------------------------------- /textures/babolex_painting2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/babolex_painting2.xpm -------------------------------------------------------------------------------- /textures/book.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/book.xpm -------------------------------------------------------------------------------- /textures/box.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/box.xpm -------------------------------------------------------------------------------- /textures/cardboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/cardboard.png -------------------------------------------------------------------------------- /textures/cardboard.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/cardboard.xpm -------------------------------------------------------------------------------- /textures/chimney_bl.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_bl.xpm -------------------------------------------------------------------------------- /textures/chimney_bottom.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_bottom.xpm -------------------------------------------------------------------------------- /textures/chimney_bottom2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_bottom2.xpm -------------------------------------------------------------------------------- /textures/chimney_br.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_br.xpm -------------------------------------------------------------------------------- /textures/chimney_ml.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_ml.xpm -------------------------------------------------------------------------------- /textures/chimney_mr.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_mr.xpm -------------------------------------------------------------------------------- /textures/chimney_tl.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_tl.xpm -------------------------------------------------------------------------------- /textures/chimney_top.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_top.xpm -------------------------------------------------------------------------------- /textures/chimney_tr.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/chimney_tr.xpm -------------------------------------------------------------------------------- /textures/commode_sized_cut (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/commode_sized_cut (1).png -------------------------------------------------------------------------------- /textures/commode_sized_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/commode_sized_cut.png -------------------------------------------------------------------------------- /textures/damages_back.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/damages_back.xpm -------------------------------------------------------------------------------- /textures/damages_front.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/damages_front.xpm -------------------------------------------------------------------------------- /textures/damages_sideleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/damages_sideleft.xpm -------------------------------------------------------------------------------- /textures/damages_sideright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/damages_sideright.xpm -------------------------------------------------------------------------------- /textures/dead_wife_960.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dead_wife_960.xpm -------------------------------------------------------------------------------- /textures/detective_backside.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/detective_backside.xpm -------------------------------------------------------------------------------- /textures/detective_frontside.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/detective_frontside.xpm -------------------------------------------------------------------------------- /textures/detective_sideleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/detective_sideleft.xpm -------------------------------------------------------------------------------- /textures/detective_sideright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/detective_sideright.xpm -------------------------------------------------------------------------------- /textures/dialog_box_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dialog_box_left.png -------------------------------------------------------------------------------- /textures/dialog_box_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dialog_box_left.xpm -------------------------------------------------------------------------------- /textures/dialog_box_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dialog_box_mid.png -------------------------------------------------------------------------------- /textures/dialog_box_mid.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dialog_box_mid.xpm -------------------------------------------------------------------------------- /textures/dialog_box_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dialog_box_right.png -------------------------------------------------------------------------------- /textures/dialog_box_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dialog_box_right.xpm -------------------------------------------------------------------------------- /textures/dresser3 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser3 (1).png -------------------------------------------------------------------------------- /textures/dresser3 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser3 (2).png -------------------------------------------------------------------------------- /textures/dresser3 (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser3 (3).png -------------------------------------------------------------------------------- /textures/dresser3_downleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser3_downleft.xpm -------------------------------------------------------------------------------- /textures/dresser3_downright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser3_downright.xpm -------------------------------------------------------------------------------- /textures/dresser3_topleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser3_topleft.xpm -------------------------------------------------------------------------------- /textures/dresser3_topright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser3_topright.xpm -------------------------------------------------------------------------------- /textures/dresser_downleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_downleft.png -------------------------------------------------------------------------------- /textures/dresser_downleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_downleft.xpm -------------------------------------------------------------------------------- /textures/dresser_downright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_downright.png -------------------------------------------------------------------------------- /textures/dresser_downright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_downright.xpm -------------------------------------------------------------------------------- /textures/dresser_half_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_half_left.xpm -------------------------------------------------------------------------------- /textures/dresser_half_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_half_right.xpm -------------------------------------------------------------------------------- /textures/dresser_topleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_topleft.png -------------------------------------------------------------------------------- /textures/dresser_topleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_topleft.xpm -------------------------------------------------------------------------------- /textures/dresser_topright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_topright.png -------------------------------------------------------------------------------- /textures/dresser_topright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/dresser_topright.xpm -------------------------------------------------------------------------------- /textures/flame_1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/flame_1.xpm -------------------------------------------------------------------------------- /textures/flame_2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/flame_2.xpm -------------------------------------------------------------------------------- /textures/flame_3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/flame_3.xpm -------------------------------------------------------------------------------- /textures/flame_4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/flame_4.xpm -------------------------------------------------------------------------------- /textures/flame_5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/flame_5.xpm -------------------------------------------------------------------------------- /textures/flame_6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/flame_6.xpm -------------------------------------------------------------------------------- /textures/flame_7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/flame_7.xpm -------------------------------------------------------------------------------- /textures/flame_8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/flame_8.xpm -------------------------------------------------------------------------------- /textures/floor.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/floor.xpm -------------------------------------------------------------------------------- /textures/floor_half_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/floor_half_left.xpm -------------------------------------------------------------------------------- /textures/floor_half_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/floor_half_right.xpm -------------------------------------------------------------------------------- /textures/full_heart_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/full_heart_2.png -------------------------------------------------------------------------------- /textures/full_heart_2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/full_heart_2.xpm -------------------------------------------------------------------------------- /textures/glass_rotated.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/glass_rotated.xpm -------------------------------------------------------------------------------- /textures/hole_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/hole_left.xpm -------------------------------------------------------------------------------- /textures/hole_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/hole_right.xpm -------------------------------------------------------------------------------- /textures/house_960.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/house_960.xpm -------------------------------------------------------------------------------- /textures/key_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/key_e.png -------------------------------------------------------------------------------- /textures/key_e.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/key_e.xpm -------------------------------------------------------------------------------- /textures/key_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/key_o.png -------------------------------------------------------------------------------- /textures/key_o.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/key_o.xpm -------------------------------------------------------------------------------- /textures/key_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/key_p.png -------------------------------------------------------------------------------- /textures/key_p.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/key_p.xpm -------------------------------------------------------------------------------- /textures/ladder_half_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/ladder_half_left.xpm -------------------------------------------------------------------------------- /textures/ladder_half_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/ladder_half_right.xpm -------------------------------------------------------------------------------- /textures/murder_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/murder_article.png -------------------------------------------------------------------------------- /textures/murder_article.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/murder_article.xpm -------------------------------------------------------------------------------- /textures/murderer_960.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/murderer_960.xpm -------------------------------------------------------------------------------- /textures/newspaper.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/newspaper.xpm -------------------------------------------------------------------------------- /textures/piano_downleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_downleft.png -------------------------------------------------------------------------------- /textures/piano_downleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_downleft.xpm -------------------------------------------------------------------------------- /textures/piano_downmid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_downmid.png -------------------------------------------------------------------------------- /textures/piano_downmid.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_downmid.xpm -------------------------------------------------------------------------------- /textures/piano_downright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_downright.png -------------------------------------------------------------------------------- /textures/piano_downright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_downright.xpm -------------------------------------------------------------------------------- /textures/piano_midleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_midleft.png -------------------------------------------------------------------------------- /textures/piano_midleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_midleft.xpm -------------------------------------------------------------------------------- /textures/piano_midmid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_midmid.png -------------------------------------------------------------------------------- /textures/piano_midmid.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_midmid.xpm -------------------------------------------------------------------------------- /textures/piano_midright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_midright.png -------------------------------------------------------------------------------- /textures/piano_midright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_midright.xpm -------------------------------------------------------------------------------- /textures/piano_topleft.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_topleft.xpm -------------------------------------------------------------------------------- /textures/piano_topmid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_topmid.png -------------------------------------------------------------------------------- /textures/piano_topmid.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_topmid.xpm -------------------------------------------------------------------------------- /textures/piano_topright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_topright.png -------------------------------------------------------------------------------- /textures/piano_topright.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/piano_topright.xpm -------------------------------------------------------------------------------- /textures/pot.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/pot.xpm -------------------------------------------------------------------------------- /textures/preview_dialogbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/preview_dialogbox.png -------------------------------------------------------------------------------- /textures/preview_key_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/preview_key_event.png -------------------------------------------------------------------------------- /textures/preview_story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/preview_story.png -------------------------------------------------------------------------------- /textures/rainy_960.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/rainy_960.xpm -------------------------------------------------------------------------------- /textures/shoes.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/shoes.xpm -------------------------------------------------------------------------------- /textures/spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/spike.png -------------------------------------------------------------------------------- /textures/spike.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/spike.xpm -------------------------------------------------------------------------------- /textures/subject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/subject.png -------------------------------------------------------------------------------- /textures/trapdoor_cut_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/trapdoor_cut_left.xpm -------------------------------------------------------------------------------- /textures/trapdoor_cut_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/trapdoor_cut_right.xpm -------------------------------------------------------------------------------- /textures/trapdoor_on_floor_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/trapdoor_on_floor_left.xpm -------------------------------------------------------------------------------- /textures/trapdoor_on_floor_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/trapdoor_on_floor_right.xpm -------------------------------------------------------------------------------- /textures/trapdoor_oriented_left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/trapdoor_oriented_left.xpm -------------------------------------------------------------------------------- /textures/trapdoor_oriented_right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/trapdoor_oriented_right.xpm -------------------------------------------------------------------------------- /textures/typeface_life.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/typeface_life.xpm -------------------------------------------------------------------------------- /textures/typeface_life_2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/typeface_life_2.xpm -------------------------------------------------------------------------------- /textures/wall.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/wall.xpm -------------------------------------------------------------------------------- /textures/wanted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/wanted.png -------------------------------------------------------------------------------- /textures/wanted.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/wanted.xpm -------------------------------------------------------------------------------- /textures/white_empty_heart.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/white_empty_heart.xpm -------------------------------------------------------------------------------- /textures/white_full_heart.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/white_full_heart.xpm -------------------------------------------------------------------------------- /textures/working_desk_960.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan0905/so_long/HEAD/textures/working_desk_960.xpm --------------------------------------------------------------------------------