| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Cure.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/12/19 15:29:40 by bchanot #+# #+# */
- /* Updated: 2025/12/19 15:45:48 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef CURE_HPP
- # define CURE_HPP
- # include <iostream>
- # include <string>
- #include "AMateria.hpp"
- class Cure : public AMateria
- {
- public:
- Cure();
- Cure( Cure const & src );
- ~Cure();
- Cure & operator=( Cure const & rhs ) = delete;
- virtual AMateria* clone() const;
- virtual void use(ICharacter& target);
- };
- std::ostream & operator<<( std::ostream & o, Cure const & i );
- #endif /* ************************************************************* CURE_H */
|