diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-06 14:29:47 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-06 14:29:47 +0200 |
commit | db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26 (patch) | |
tree | 23419411132e5ee23cf247716de11baed5954a1f /src/ft_init_lists.c | |
parent | I think it's fixed (diff) | |
download | 42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.tar.gz 42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.tar.bz2 42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.tar.xz 42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.tar.zst 42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.zip |
Weapons have different velocities
Diffstat (limited to 'src/ft_init_lists.c')
-rw-r--r-- | src/ft_init_lists.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ft_init_lists.c b/src/ft_init_lists.c index 6ad56d1..76ac0ae 100644 --- a/src/ft_init_lists.c +++ b/src/ft_init_lists.c @@ -60,6 +60,9 @@ t_player plist.ammo[2] = 0; plist.life = FT_STRT_LIFE; plist.fire = 0; + plist.weap_vel[0] = FT_WEAP_ONE_VEL; + plist.weap_vel[1] = FT_WEAP_TWO_VEL; + plist.weap_vel[2] = FT_WEAP_THREE_VEL; return (plist); } |