19 lines
199 B
C++
19 lines
199 B
C++
#ifndef ICE_HPP
|
|
# define ICE_HPP
|
|
|
|
#include "AMateria.hpp"
|
|
|
|
class Ice : public AMateria {
|
|
|
|
public:
|
|
Ice();
|
|
Ice( Ice const & src );
|
|
~Ice();
|
|
Ice & operator=( Ice const & rhs );
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|