34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Zombie.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/09/05 16:44:08 by aortigos #+# #+# */
|
|
/* Updated: 2025/09/14 13:49:47 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ZOMBIE_HPP
|
|
|
|
# define ZOMBIE_HPP
|
|
|
|
# include <iostream>
|
|
|
|
class Zombie
|
|
{
|
|
private:
|
|
std::string name;
|
|
|
|
public:
|
|
Zombie();
|
|
~Zombie();
|
|
void setName( std::string str );
|
|
void announce( void );
|
|
};
|
|
|
|
Zombie* zombieHorde( int N, std::string name );
|
|
|
|
#endif
|