diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-08 02:47:01 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-08 02:47:01 +0100 |
commit | de7d432e18f4363e73b11f23885d7afd002a99f0 (patch) | |
tree | b2321f6c77d19147892541b2de619681372beeb0 /inc/cub3d.h | |
parent | Not great (diff) | |
download | 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.tar.gz 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.tar.bz2 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.tar.xz 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.tar.zst 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.zip |
I'm close af
Diffstat (limited to '')
-rw-r--r-- | inc/cub3d.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 3875adc..e97af59 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -120,7 +120,7 @@ uint8_t ft_use_args(int argc, const char *argv[], */ void ft_castray(t_cub *cl); -void ft_floor_cast(uint16_t y, t_cub *cl); +void ft_floor_cast(t_cub *cl); void ft_detect(t_cub *cl); /* @@ -136,8 +136,8 @@ uint8_t ft_free_words(char **words); int8_t ft_warp_level(t_cub *cl); int ft_exit(uint8_t exit_code, t_cub *clist); uint32_t ft_rgb_to_hex(t_rgb rgb); -uint32_t ft_darken_ceil(t_rgb rgb, int32_t y, t_cub *cl); -uint32_t ft_darken_floor(t_rgb rgb, int32_t y, t_cub *cl); t_bmp_rgb ft_hex_to_rgb(uint32_t color); +uint32_t ft_darken_ceil(t_rgb rgb, int32_t y, t_cub *cl); +uint32_t ft_darken_floor(t_rgb rgb, float dist, t_cub *cl); # endif |