7 lines
158 B
C++
7 lines
158 B
C++
#include "ItemDef.hpp"
|
|
#include "../util/stringutil.hpp"
|
|
|
|
ItemDef::ItemDef(const std::string& name) : name(name) {
|
|
caption = util::id_to_caption(name);
|
|
}
|