/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/13 09:40:26 by charles #+# #+# */ /* Updated: 2020/11/09 12:53:45 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_HPP # define ZOMBIE_HPP # include class Zombie { public: Zombie(); Zombie(std::string const& name, std::string const& type); ~Zombie(); void announce(); void setName(std::string const& name); void setType(std::string const& type); private: std::string m_name; std::string m_type; }; #endif