aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex02/Zombie.hpp
blob: 5106c8f2ebf45261f4f7714a35cb7646cc14fe7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   Zombie.hpp                                         :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/13 09:40:26 by charles           #+#    #+#             */
/*   Updated: 2020/04/13 09:40:49 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef ZOMBIE_HPP
# define ZOMBIE_HPP

# include <string>

class Zombie
{
public:
    Zombie(std::string name, std::string type);
    void announce();

private:
    std::string m_name;
    std::string m_type;
};

#endif