1
0
This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_01/ex00/Zombie.hpp

30 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Zombie.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/04 10:52:33 by adjoly #+# #+# */
/* Updated: 2024/11/04 19:21:59 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include <string>
class Zombie {
private:
std::string name;
public:
void announce(void);
Zombie(std::string name);
~Zombie(void);
};
Zombie *newZombie(std::string name);
void randomChump(std::string name);