diff options
author | Rudy Bousset <rbousset@z2r6p3.le-101.fr> | 2020-03-08 20:44:41 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r6p3.le-101.fr> | 2020-03-08 20:44:41 +0100 |
commit | 36c540d12683633b77f6acda658fe4517eb674a5 (patch) | |
tree | 09966fe9da82bea0aab8f219da7630147a2d9ff7 /src/ft_floor_cast.c | |
parent | Nice and clean (diff) | |
download | 42-cub3d-36c540d12683633b77f6acda658fe4517eb674a5.tar.gz 42-cub3d-36c540d12683633b77f6acda658fe4517eb674a5.tar.bz2 42-cub3d-36c540d12683633b77f6acda658fe4517eb674a5.tar.xz 42-cub3d-36c540d12683633b77f6acda658fe4517eb674a5.tar.zst 42-cub3d-36c540d12683633b77f6acda658fe4517eb674a5.zip |
Clean af
Diffstat (limited to 'src/ft_floor_cast.c')
-rw-r--r-- | src/ft_floor_cast.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/ft_floor_cast.c b/src/ft_floor_cast.c index ddc7bde..a0321d0 100644 --- a/src/ft_floor_cast.c +++ b/src/ft_floor_cast.c @@ -13,7 +13,9 @@ #include <cub3d.h> #include <stdint.h> -/* void */ -/* ft_floor_cast(t_cub *cl) */ -/* { */ -/* } */ +void + ft_floor_cast(uint16_t y, t_cub *cl) +{ + (void)y; + (void)cl; +} |