1
0
This repository has been archived on 2025-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_03/ex02/ScavTrap.hpp

31 lines
1.2 KiB
C++
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ScavTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/27 12:29:17 by adjoly #+# #+# */
/* Updated: 2024/11/29 16:14:16 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "ClapTrap.hpp"
class ScavTrap : public ClapTrap {
public:
ScavTrap(void);
~ScavTrap(void);
ScavTrap(std::string);
ScavTrap(const ScavTrap &);
ScavTrap &operator=(const ScavTrap &);
void guardGate(void);
void attack(const std::string &);
};
void logScav(std::string, std::string);
void logScav(std::string, std::string, std::string);