CPP04/ex03/inc/Cure.hpp
2025-04-17 14:05:53 +02:00

30 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* Cure.hpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/04/14 22:21:38 by whaffman #+# #+# */
/* Updated: 2025/04/17 13:41:18 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include "AMateria.hpp"
#include "ICharacter.hpp"
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;
};