-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
27 lines (24 loc) · 1.09 KB
/
Copy pathmain.c
File metadata and controls
27 lines (24 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dximenes <dximenes@student.42porto.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/06/18 20:31:04 by dximenes #+# #+# */
/* Updated: 2025/07/29 10:05:56 by dximenes ### ########.fr */
/* */
/* ************************************************************************** */
#include "FdF.h"
int main(int argc, char *argv[])
{
t_head *head;
if (argc != 2)
return (0);
init_program(&head, argv[1]);
load_map(head, argv[1]);
init_menu(head);
init_fps(&head->fps);
hooks(head);
return (0);
}