13 lines
147 B
C++
13 lines
147 B
C++
#ifndef WEAPON_H
|
|
#define WEAPON_H
|
|
|
|
#include <string>
|
|
|
|
struct Weapon {
|
|
std::string name;
|
|
int value1;
|
|
int value2;
|
|
};
|
|
|
|
#endif // WEAPON_H
|