/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* newZombie.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/07/15 13:51:00 by bchanot #+# #+# */ /* Updated: 2025/07/15 13:56:23 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "Zombie.hpp" Zombie *newZombie(std::string name) { return new Zombie(name); }