| 86 | } |
| 87 | |
| 88 | bool SkillEntity::importFromStream(std::istream& is) |
| 89 | { |
| 90 | if(!RenderedMovableEntity::importFromStream(is)) |
| 91 | return false; |
| 92 | if(!(is >> mSkillPoints)) |
| 93 | return false; |
| 94 | if(!(is >> mPosition.x >> mPosition.y >> mPosition.z)) |
| 95 | return false; |
| 96 | |
| 97 | return true; |
| 98 | } |
| 99 | |
| 100 | std::string SkillEntity::getSkillEntityStreamFormat() |
| 101 | { |
no outgoing calls
no test coverage detected