| 123456789101112131415161718192021222324252627282930 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Zombie.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/07/15 13:42:27 by bchanot #+# #+# */
- /* Updated: 2025/07/15 14:47:35 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include <iostream>
- class Zombie {
- public:
- Zombie(std::string name);
- Zombie(void);
- ~Zombie(void);
- void announce(void) const;
- void setZombie(std::string name);
- private:
- std::string _name;
- };
- Zombie *newZombie( std::string name);
- void randomChump( std::string name );
- Zombie *zombieHorde( int N, std::string name );
|