feat(ex00): it works
This commit is contained in:
parent
8cfb880a3a
commit
b9ff91c653
7 changed files with 57 additions and 1 deletions
20
ex00/Zombie.hpp
Normal file
20
ex00/Zombie.hpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue