/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Ice.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/06 16:51:34 by adjoly #+# #+# */
/* Updated: 2024/12/11 12:07:40 by adjoly ### ########.fr */
#pragma once
#include "AMateria.hpp"
#include "ICharacter.hpp"
#include "MateriaTemplate.hpp"
class Ice : public MateriaTemplate<Ice> {
public:
static const std::string _typeName(void);
void use(ICharacter &);
};