32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* FragTrap.hpp :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/03/28 15:44:08 by whaffman #+# #+# */
|
|
/* Updated: 2025/04/08 10:19:00 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include "ClapTrap.hpp"
|
|
#include <string>
|
|
|
|
class FragTrap : public ClapTrap
|
|
{
|
|
public:
|
|
FragTrap();
|
|
FragTrap(std::string name);
|
|
FragTrap(FragTrap const &src);
|
|
~FragTrap();
|
|
|
|
FragTrap &operator=(FragTrap const &other);
|
|
|
|
void highFivesGuys(void);
|
|
void status(void) const;
|
|
};
|
|
|
|
void fragtrap_test(); |