├── Makefile ├── README.md ├── bonus ├── Makefile ├── img │ ├── bayraktarTB2.xpm │ ├── duvar.xpm │ ├── enemy.xpm │ ├── exit.xpm │ ├── floor.xpm │ ├── left.xpm │ ├── right.xpm │ ├── s400.xpm │ ├── s400f.xpm │ └── ust.xpm └── mainfiles │ ├── Makefile │ ├── anim.c │ ├── bonus.h │ ├── bonus_control.c │ ├── bonus_image.c │ ├── bonus_main.c │ ├── bonus_map.c │ ├── bonus_move.c │ ├── bonus_utils.c │ ├── bonus_window.c │ └── get_next_line.c ├── fragman.gif ├── img ├── .DS_Store ├── bayraktarTB2.xpm ├── duvar.xpm ├── exit.xpm ├── floor.xpm ├── karakter.xpm ├── left.xpm ├── s400.xpm └── ust.xpm ├── mainfiles ├── Makefile ├── control.c ├── get_next_line.c ├── image.c ├── main.c ├── map.c ├── move.c ├── so_long.h ├── utils.c └── window.c ├── map ├── .DS_Store ├── 42.ber ├── big.ber ├── bonus.ber └── map.ber ├── minilibx ├── Makefile ├── font.c ├── font.xcf ├── libmlx.a ├── 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 └── tr.subject.pdf /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/README.md -------------------------------------------------------------------------------- /bonus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/Makefile -------------------------------------------------------------------------------- /bonus/img/bayraktarTB2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/bayraktarTB2.xpm -------------------------------------------------------------------------------- /bonus/img/duvar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/duvar.xpm -------------------------------------------------------------------------------- /bonus/img/enemy.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/enemy.xpm -------------------------------------------------------------------------------- /bonus/img/exit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/exit.xpm -------------------------------------------------------------------------------- /bonus/img/floor.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/floor.xpm -------------------------------------------------------------------------------- /bonus/img/left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/left.xpm -------------------------------------------------------------------------------- /bonus/img/right.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/right.xpm -------------------------------------------------------------------------------- /bonus/img/s400.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/s400.xpm -------------------------------------------------------------------------------- /bonus/img/s400f.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/s400f.xpm -------------------------------------------------------------------------------- /bonus/img/ust.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/img/ust.xpm -------------------------------------------------------------------------------- /bonus/mainfiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/Makefile -------------------------------------------------------------------------------- /bonus/mainfiles/anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/anim.c -------------------------------------------------------------------------------- /bonus/mainfiles/bonus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/bonus.h -------------------------------------------------------------------------------- /bonus/mainfiles/bonus_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/bonus_control.c -------------------------------------------------------------------------------- /bonus/mainfiles/bonus_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/bonus_image.c -------------------------------------------------------------------------------- /bonus/mainfiles/bonus_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/bonus_main.c -------------------------------------------------------------------------------- /bonus/mainfiles/bonus_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/bonus_map.c -------------------------------------------------------------------------------- /bonus/mainfiles/bonus_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/bonus_move.c -------------------------------------------------------------------------------- /bonus/mainfiles/bonus_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/bonus_utils.c -------------------------------------------------------------------------------- /bonus/mainfiles/bonus_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/bonus_window.c -------------------------------------------------------------------------------- /bonus/mainfiles/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/bonus/mainfiles/get_next_line.c -------------------------------------------------------------------------------- /fragman.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/fragman.gif -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/bayraktarTB2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/bayraktarTB2.xpm -------------------------------------------------------------------------------- /img/duvar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/duvar.xpm -------------------------------------------------------------------------------- /img/exit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/exit.xpm -------------------------------------------------------------------------------- /img/floor.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/floor.xpm -------------------------------------------------------------------------------- /img/karakter.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/karakter.xpm -------------------------------------------------------------------------------- /img/left.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/left.xpm -------------------------------------------------------------------------------- /img/s400.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/s400.xpm -------------------------------------------------------------------------------- /img/ust.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/img/ust.xpm -------------------------------------------------------------------------------- /mainfiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/Makefile -------------------------------------------------------------------------------- /mainfiles/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/control.c -------------------------------------------------------------------------------- /mainfiles/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/get_next_line.c -------------------------------------------------------------------------------- /mainfiles/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/image.c -------------------------------------------------------------------------------- /mainfiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/main.c -------------------------------------------------------------------------------- /mainfiles/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/map.c -------------------------------------------------------------------------------- /mainfiles/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/move.c -------------------------------------------------------------------------------- /mainfiles/so_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/so_long.h -------------------------------------------------------------------------------- /mainfiles/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/utils.c -------------------------------------------------------------------------------- /mainfiles/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/mainfiles/window.c -------------------------------------------------------------------------------- /map/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/map/.DS_Store -------------------------------------------------------------------------------- /map/42.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/map/42.ber -------------------------------------------------------------------------------- /map/big.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/map/big.ber -------------------------------------------------------------------------------- /map/bonus.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/map/bonus.ber -------------------------------------------------------------------------------- /map/map.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/map/map.ber -------------------------------------------------------------------------------- /minilibx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/Makefile -------------------------------------------------------------------------------- /minilibx/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/font.c -------------------------------------------------------------------------------- /minilibx/font.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/font.xcf -------------------------------------------------------------------------------- /minilibx/libmlx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/libmlx.a -------------------------------------------------------------------------------- /minilibx/mlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx.h -------------------------------------------------------------------------------- /minilibx/mlx_init_loop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_init_loop.m -------------------------------------------------------------------------------- /minilibx/mlx_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_int.h -------------------------------------------------------------------------------- /minilibx/mlx_int_str_to_wordtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_int_str_to_wordtab.c -------------------------------------------------------------------------------- /minilibx/mlx_mouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_mouse.m -------------------------------------------------------------------------------- /minilibx/mlx_new_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_new_image.m -------------------------------------------------------------------------------- /minilibx/mlx_new_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_new_window.h -------------------------------------------------------------------------------- /minilibx/mlx_new_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_new_window.m -------------------------------------------------------------------------------- /minilibx/mlx_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_opengl.h -------------------------------------------------------------------------------- /minilibx/mlx_opengl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_opengl.m -------------------------------------------------------------------------------- /minilibx/mlx_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_png.c -------------------------------------------------------------------------------- /minilibx/mlx_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_png.h -------------------------------------------------------------------------------- /minilibx/mlx_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_rgb.c -------------------------------------------------------------------------------- /minilibx/mlx_shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_shaders.c -------------------------------------------------------------------------------- /minilibx/mlx_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/minilibx/mlx_xpm.c -------------------------------------------------------------------------------- /tr.subject.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajun1337/SoLong/HEAD/tr.subject.pdf --------------------------------------------------------------------------------