diff options
Diffstat (limited to 'cpp04/ex03/Cure.hpp')
| -rw-r--r-- | cpp04/ex03/Cure.hpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cpp04/ex03/Cure.hpp b/cpp04/ex03/Cure.hpp new file mode 100644 index 0000000..4c7a6dd --- /dev/null +++ b/cpp04/ex03/Cure.hpp @@ -0,0 +1,32 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* Cure.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/04/14 17:37:11 by charles #+# #+# */ +/* Updated: 2020/04/14 17:42:52 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef CURE_HPP +# define CURE_HPP + +# include <iostream> +# include "AMateria.hpp" + +class Cure : public AMateria +{ +public: + Cure(); + Cure(Cure const& other); + void operator=(Cure const& other); + ~Cure(); + + virtual AMateria* clone() const; + virtual void use(ICharacter& target); +private: +}; + +#endif |
