13 lines
127 B
C++
13 lines
127 B
C++
#ifndef SKILL_H
|
|
#define SKILL_H
|
|
|
|
|
|
#include <string>
|
|
|
|
struct Skill {
|
|
std::string name;
|
|
int value;
|
|
};
|
|
|
|
#endif // SKILL_H
|