12 lines
154 B
C++
12 lines
154 B
C++
#ifndef SPECIALSKILL_H
|
|
#define SPECIALSKILL_H
|
|
|
|
#include <string>
|
|
|
|
struct SpecialSkill {
|
|
std::string name;
|
|
int value;
|
|
};
|
|
|
|
#endif // SPECIALSKILL_H
|