/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Ice.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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 { public: static const std::string _typeName(void); void use(ICharacter &); };