31 lines
1.2 KiB
C++
31 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* Ice.hpp :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/04/14 22:23:22 by whaffman #+# #+# */
|
|
/* Updated: 2025/04/14 22:23:50 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
#include "AMateria.hpp"
|
|
#include "ICharacter.hpp"
|
|
#include <string>
|
|
#include <iostream>
|
|
#include "colors.h"
|
|
|
|
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;
|
|
};
|