/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* MateriaSource.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/24 15:47:01 by bchanot #+# #+# */ /* Updated: 2025/12/25 01:28:03 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef MATERIASOURCE_HPP # define MATERIASOURCE_HPP # include # include #include "AMateria.hpp" #include "IMateriaSource.hpp" class MateriaSource : public IMateriaSource { public: MateriaSource(); MateriaSource( MateriaSource const & src ); ~MateriaSource(); virtual void learnMateria(AMateria* source); virtual AMateria* createMateria(std::string const & type); MateriaSource & operator=( MateriaSource const & rhs ); private: AMateria *_items[4]; }; std::ostream & operator<<( std::ostream & o, MateriaSource const & i ); #endif /* **************************************************** MATERIASOURCE_H */