cpp01...
This commit is contained in:
34
ex00/Zombie/Zombie.hpp
Normal file
34
ex00/Zombie/Zombie.hpp
Normal file
@@ -0,0 +1,34 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* Zombie.hpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/09/05 16:44:08 by aortigos #+# #+# */
|
||||
/* Updated: 2025/09/06 01:22:58 by aortigos ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef ZOMBIE_HPP
|
||||
|
||||
# define ZOMBIE_HPP
|
||||
|
||||
# include <iostream>
|
||||
|
||||
class Zombie
|
||||
{
|
||||
private:
|
||||
std::string name;
|
||||
|
||||
public:
|
||||
Zombie();
|
||||
~Zombie();
|
||||
Zombie(std::string str);
|
||||
void announce( void );
|
||||
};
|
||||
|
||||
Zombie* newZombie( std::string name );
|
||||
void randomChump( std::string name );
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user