mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
20 lines
1,023 B
C
20 lines
1,023 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* pay.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchampio <tchampio@student.42lehavre.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/10/01 14:05:08 by tchampio #+# #+# */
|
|
/* Updated: 2025/10/01 14:06:19 by tchampio ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PAY_H
|
|
# define PAY_H
|
|
|
|
# include "../cub3d_data.h"
|
|
|
|
bool pay(t_cub3d_data *data, int amount, bool isdoor);
|
|
|
|
#endif // PAY_H
|