1
0
This repository has been archived on 2025-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
2024-12-10 15:22:18 +01:00

28 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Ice.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/06 16:51:34 by adjoly #+# #+# */
/* Updated: 2024/12/07 12:29:29 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "AMateria.hpp"
#include "ICharacter.hpp"
class Ice : public AMateria {
public:
Ice(void);
~Ice(void);
Ice(const Ice &);
Ice &operator=(const Ice &);
Ice *clone(void) const;
void use(ICharacter &);
};