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/ex01/Zombie.hpp

32 lines
1.1 KiB
C++
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Zombie.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/04 10:52:33 by adjoly #+# #+# */
/* Updated: 2024/11/04 19:22:07 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
# include <string>
# define uint8_t unsigned char
class Zombie {
private:
std::string name;
public:
void announce(void);
void setName(std::string newName);
Zombie(void);
~Zombie(void);
};
Zombie *zombieHorde(int n, std::string name);