You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1018 B
20 lines
1018 B
/* ************************************************************************** */ |
|
/* */ |
|
/* ::: :::::::: */ |
|
/* randomChump.cpp :+: :+: :+: */ |
|
/* +:+ +:+ +:+ */ |
|
/* By: paulohl <pohl@student.42.fr> +#+ +:+ +#+ */ |
|
/* +#+#+#+#+#+ +#+ */ |
|
/* Created: 2021/07/19 17:34:31 by paulohl #+# #+# */ |
|
/* Updated: 2021/07/19 17:37:51 by paulohl ### ########.fr */ |
|
/* */ |
|
/* ************************************************************************** */ |
|
|
|
#include "Zombie.hpp" |
|
|
|
void randomChump( std::string name ) |
|
{ |
|
Zombie randomChump = Zombie(name); |
|
|
|
randomChump.announce(); |
|
}
|
|
|