@brief 获取动画
| 657 | |
| 658 | /// @brief 获取动画 |
| 659 | fcyRefPointer<ResAnimation> GetAnimation(const char* name)LNOEXCEPT |
| 660 | { |
| 661 | auto i = m_AnimationPool.find(name); |
| 662 | if (i == m_AnimationPool.end()) |
| 663 | return nullptr; |
| 664 | else |
| 665 | return i->second; |
| 666 | } |
| 667 | |
| 668 | /// @brief 获取背景音 |
| 669 | fcyRefPointer<ResMusic> GetMusic(const char* name)LNOEXCEPT |