diff options
Diffstat (limited to 'cpp01/ex03/Zombie.hpp')
| -rw-r--r-- | cpp01/ex03/Zombie.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cpp01/ex03/Zombie.hpp b/cpp01/ex03/Zombie.hpp new file mode 100644 index 0000000..980ea49 --- /dev/null +++ b/cpp01/ex03/Zombie.hpp @@ -0,0 +1,17 @@ +#ifndef ZOMBIE_HPP +# define ZOMBIE_HPP + +#include <string> + +class Zombie +{ + public: + Zombie(std::string n, std::string t); + void announce(); + + private: + std::string name; + std::string type; +}; + +#endif |
