Ice.hpp
 1  /* ************************************************************************** */
 2  /*                                                                            */
 3  /*                                                        :::      ::::::::   */
 4  /*   Ice.hpp                                            :+:      :+:    :+:   */
 5  /*                                                    +:+ +:+         +:+     */
 6  /*   By: gychoi <gychoi@student.42seoul.kr>         +#+  +:+       +#+        */
 7  /*                                                +#+#+#+#+#+   +#+           */
 8  /*   Created: 2023/08/17 22:15:56 by gychoi            #+#    #+#             */
 9  /*   Updated: 2023/08/17 22:18:32 by gychoi           ###   ########.fr       */
10  /*                                                                            */
11  /* ************************************************************************** */
12  
13  #pragma once
14  #ifndef __ICE_HPP__
15  # define __ICE_HPP__
16  # include "AMateria.hpp"
17  # include "ICharacter.hpp"
18  
19  class	Ice : public AMateria
20  {
21  	public:
22  		Ice(void);
23  		virtual ~Ice(void);
24  		Ice(Ice const& target);
25  		Ice&	operator=(Ice const& target);
26  
27  		virtual AMateria*	clone(void) const;
28  		virtual void		use(ICharacter& target);
29  };
30  
31  #endif	/* __ICE_HPP__ */