-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewZombie.cpp
More file actions
17 lines (15 loc) · 980 Bytes
/
newZombie.cpp
File metadata and controls
17 lines (15 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* newZombie.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/06 10:05:06 by zelhajou #+# #+# */
/* Updated: 2024/06/06 11:06:25 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#include "Zombie.hpp"
Zombie* newZombie(std::string name) {
return new Zombie(name);
}