aboutsummaryrefslogtreecommitdiff
path: root/cpp04/ex03/Ice.hpp
blob: 637f440ebc406f424176877b91ddae83ef6e2b24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   Ice.hpp                                            :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/14 16:31:34 by charles           #+#    #+#             */
/*   Updated: 2020/12/11 11:41:02 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef ICE_HPP
# define ICE_HPP

# include <iostream>
# include "AMateria.hpp"

class Ice : public AMateria
{
public:
    Ice();
    Ice(Ice const& other);
    Ice& operator=(Ice const& other);
    virtual ~Ice();

    virtual AMateria* clone() const;
    virtual void      use(ICharacter& target);
private:
};

#endif