FicheJDR/Possession.h

12 lines
146 B
C++

#ifndef POSSESSION_H
#define POSSESSION_H
#include <string>
struct Possession {
std::string name;
int value;
};
#endif // POSSESSION_H