/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/04 11:41:07 by adjoly #+# #+# */ /* Updated: 2024/11/04 15:07:39 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #include "Zombie.hpp" int main(void) { Zombie *zombie; zombie = newZombie("newZombieee"); zombie->announce(); delete zombie; randomChump("Zombieee"); return (0); }