newZombie.cpp 981 B

1234567891011121314151617
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* newZombie.cpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2025/07/15 13:51:00 by bchanot #+# #+# */
  9. /* Updated: 2025/07/15 13:56:23 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #include "Zombie.hpp"
  13. Zombie *newZombie(std::string name) {
  14. return new Zombie(name);
  15. }