21 lines
1 KiB
C
21 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* move.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/31 16:59:27 by mcolonna #+# #+# */
|
|
/* Updated: 2024/11/01 21:05:51 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MOVE_H
|
|
# define MOVE_H
|
|
|
|
# include "include.h"
|
|
|
|
/// @brief Move the player according to the user input.
|
|
void move(void);
|
|
|
|
#endif
|