/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Ice.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/31 16:49:13 by fgras-ca #+# #+# */ /* Updated: 2023/12/31 16:49:44 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ICE_HPP #define ICE_HPP #include "AMateria.hpp" class Ice : public AMateria { public: Ice(); Ice(const Ice& other); Ice& operator=(const Ice& other); virtual ~Ice(); virtual AMateria* clone() const override; virtual void use(ICharacter& target) override; }; #endif