CPP01/ex01/inc/Zombie.hpp
2025-04-02 12:30:39 +02:00

33 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* Zombie.hpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/03/21 15:19:56 by whaffman #+# #+# */
/* Updated: 2025/04/02 10:48:04 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include <string>
class Zombie
{
private:
std::string name;
public:
Zombie();
Zombie(std::string name);
~Zombie();
void announce() const;
void setName(std::string name);
static Zombie *zombieHorde(int N, std::string name);
};