28 lines
1.1 KiB
C++
28 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* Weapon.hpp :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/03/21 16:15:25 by whaffman #+# #+# */
|
|
/* Updated: 2025/03/21 16:28:51 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class Weapon
|
|
{
|
|
public:
|
|
Weapon();
|
|
Weapon(std::string p_type);
|
|
~Weapon();
|
|
const std::string &getType();
|
|
void setType(std::string p_type);
|
|
|
|
private:
|
|
std::string type;
|
|
}; |