Beispiel #1
0
std::string SkillModel::getElementAt(int i)
{
    const SkillInfo *const info = getSkillAt(i);
    if (info != nullptr)
        return info->data->name;
    return std::string();
}
Beispiel #2
0
 std::string getElementAt(int i)
 { return getSkillAt(i)->name; }