mirror of
https://github.com/Ladebeze66/cpp-partie-1.git
synced 2025-12-16 14:08:04 +01:00
31 lines
1.2 KiB
C++
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
|