32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* Zombie.hpp :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/03/21 15:19:56 by whaffman #+# #+# */
|
|
/* Updated: 2025/03/21 15:30:14 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class Zombie
|
|
{
|
|
private:
|
|
std::string name;
|
|
|
|
public:
|
|
Zombie();
|
|
Zombie(std::string name);
|
|
~Zombie();
|
|
void announce();
|
|
void setName(std::string name);
|
|
};
|
|
|
|
Zombie* newZombie( std::string name );
|
|
void randomChump( std::string name );
|