cpp01/ex00/NewZombie.cpp

19 lines
1014 B
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* newZombie.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lfirmin <lfirmin@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/07/01 13:51:04 by lfirmin #+# #+# */
/* Updated: 2025/07/01 13:51:06 by lfirmin ### ########.fr */
/* */
/* ************************************************************************** */
#include "Zombie.hpp"
Zombie* newZombie( std::string name )
{
Zombie *zombie = new Zombie(name);
return zombie;
}