CPP04/ex03/inc/Cure.hpp
2025-04-14 22:42:37 +02:00

33 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* Cure.hpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/04/14 22:21:38 by whaffman #+# #+# */
/* Updated: 2025/04/14 22:29:08 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include "AMateria.hpp"
#include "ICharacter.hpp"
#include <string>
#include <iostream>
#include "colors.h"
class Cure : public AMateria
{
public:
Cure();
Cure(Cure const &other);
~Cure() override;
Cure &operator=(Cure const &other);
AMateria *clone() const override;
void use(ICharacter &target) override;
};