d01 ex00 ok

This commit is contained in:
hugogogo
2022-02-05 16:11:23 +01:00
parent a30edf91ab
commit b7b56f5a83
7 changed files with 147 additions and 0 deletions

12
d01/ex00/newZombie.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "Zombie.hpp"
Zombie *newZombie( std::string name ) {
Zombie *zomb;
zomb = new Zombie( name );
return zomb;
}