/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Ice.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/12/06 16:51:34 by adjoly #+# #+# */ /* Updated: 2024/12/07 12:29:29 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "AMateria.hpp" #include "ICharacter.hpp" class Ice : public AMateria { public: Ice(void); ~Ice(void); Ice(const Ice &); Ice &operator=(const Ice &); Ice *clone(void) const; void use(ICharacter &); };