2024-02-20 15:35:19 +01:00

31 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Ice.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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