32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Zombie.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/11/04 16:03:03 by rparodi #+# #+# */
|
|
/* Updated: 2024/12/23 12:36:49 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ZOMBIE_HPP
|
|
#define ZOMBIE_HPP
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
class Zombie
|
|
{
|
|
public:
|
|
Zombie(std::string name);
|
|
~Zombie();
|
|
void announce(void);
|
|
private:
|
|
std::string _name;
|
|
};
|
|
|
|
Zombie* newZombie( std::string name );
|
|
void randomChump( std::string name );
|
|
|
|
#endif
|