CPP04/ex03/inc/Ice.hpp
2025-04-17 14:05:53 +02:00

29 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* Ice.hpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* 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;
};