| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Character.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/12/19 16:40:56 by bchanot #+# #+# */
- /* Updated: 2025/12/26 00:27:46 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef CHARACTER_HPP
- # define CHARACTER_HPP
- # include <iostream>
- # include <string>
- #include "ICharacter.hpp"
- class Character : public ICharacter
- {
- public:
- Character();
- Character( Character const & src );
- Character( std::string const &name );
- ~Character();
- Character & operator=( Character const & rhs );
- virtual std::string const & getName() const;
- virtual void equip(AMateria* m);
- virtual void unequip(int idx);
- virtual void use(int idx, ICharacter& target);
- private:
- std::string _name;
- AMateria *_items[4];
- };
- std::ostream & operator<<( std::ostream & o, Character const & i );
- #endif /* ******************************************************* CHARACTER_H */
|