Files
42_INT_09_piscine_cpp/d01/ex00/Zombie.hpp
2022-02-05 16:11:23 +01:00

23 lines
213 B
C++

#ifndef ZOMBIE_HPP
# define ZOMBIE_HPP
#include <iostream>
#include <string>
class Zombie {
public:
Zombie( std::string name );
~Zombie();
void announce( void );
private:
std::string _name;
};
#endif