Files
42_INT_09_piscine_cpp/d04/ex03/headers/Ice.hpp
2022-02-27 22:07:04 +01:00

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