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