| 1364 | } |
| 1365 | |
| 1366 | bool Seat::getCurrentSkillProgress(SkillType& type, float& progress) const |
| 1367 | { |
| 1368 | if(mCurrentSkillType == SkillType::nullSkillType) |
| 1369 | return false; |
| 1370 | |
| 1371 | type = mCurrentSkillType; |
| 1372 | progress = mCurrentSkillProgress; |
| 1373 | return true; |
| 1374 | } |
| 1375 | |
| 1376 | void Seat::setNextSkill(SkillType skilledType) |
| 1377 | { |
no outgoing calls
no test coverage detected