summaryrefslogtreecommitdiff
path: root/ex03/Weapon.hpp
blob: 945644cadc61f7d6d9b22e005082c773f4b9fd08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   Weapon.hpp                                         :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: dkaiser <dkaiser@student.42heilbronn.de    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2025/02/10 11:58:44 by dkaiser           #+#    #+#             */
/*   Updated: 2025/02/10 12:45:20 by dkaiser          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef WEAPON_H_
#define WEAPON_H_

#include <string>

class Weapon
{
    public: 
        Weapon(const std::string &type);
        const std::string& getType(void) const;
        void setType(const std::string &type);
    private:
        std::string type;
};

#endif