mirror of
https://github.com/Ladebeze66/cpp-partie-1.git
synced 2025-12-15 21:57:03 +01:00
34 lines
1.2 KiB
C++
34 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Zombie.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/12/24 13:23:44 by fgras-ca #+# #+# */
|
|
/* Updated: 2023/12/24 13:30:20 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ZOMBIE_HPP
|
|
# define ZOMBIE_HPP
|
|
|
|
#include <iostream>
|
|
|
|
class Zombie
|
|
{
|
|
public:
|
|
Zombie(void);
|
|
~Zombie(void);
|
|
void announce(void);
|
|
void setname(std::string name);
|
|
|
|
private:
|
|
std::string name;
|
|
};
|
|
|
|
Zombie* newZombie(std::string name);
|
|
void randomChump(std::string name);
|
|
|
|
#endif
|