18 lines
983 B
C++
18 lines
983 B
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* newZombie.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/20 13:50:38 by erey-bet #+# #+# */
|
|
/* Updated: 2023/04/20 15:56:43 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "Zombie.hpp"
|
|
|
|
Zombie *newZombie(std::string name) {
|
|
return (new Zombie(name));
|
|
}
|