| 66 | } |
| 67 | |
| 68 | std::vector<std::string> Animator::getAllAnimationName() const |
| 69 | { |
| 70 | std::vector<std::string> allAnimationsNames; |
| 71 | for (auto& animationPair : m_animations) |
| 72 | allAnimationsNames.push_back(animationPair.first); |
| 73 | return allAnimationsNames; |
| 74 | } |
| 75 | |
| 76 | std::string Animator::getKey() const noexcept |
| 77 | { |
no test coverage detected