cpp01/ex00/Zombie.hpp

21 lines
261 B
C++
Raw Normal View History

2025-05-12 12:01:05 +02:00
#ifndef ZOMBIE_HPP
#define ZOMBIE_HPP
#include <string>
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