1
0
This repository has been archived on 2025-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_04/ex03/Cure.hpp
2024-12-11 14:03:14 +01:00

24 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Cure.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/10 12:35:41 by adjoly #+# #+# */
/* Updated: 2024/12/11 12:07:54 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "ICharacter.hpp"
#include "MateriaTemplate.hpp"
class Cure : public MateriaTemplate<Cure>{
public:
static const std::string _typeName(void);
void use(ICharacter &);
};