/* ************************************************************************** */ /* */ /* :::::::: */ /* Ice.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/04/14 22:23:22 by whaffman #+# #+# */ /* Updated: 2025/04/17 13:42:32 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include "AMateria.hpp" #include "ICharacter.hpp" class Ice : public AMateria { public: Ice(); Ice(Ice const &other); ~Ice() override; Ice &operator=(Ice const &other); AMateria *clone() const override; void use(ICharacter &target) override; };