| 122 | public: |
| 123 | size_t GetCount()const LNOEXCEPT { return m_ImageSequences.size(); } |
| 124 | f2dSprite* GetSprite(fuInt index)LNOEXCEPT |
| 125 | { |
| 126 | if (index >= GetCount()) |
| 127 | return nullptr; |
| 128 | return m_ImageSequences[index]; |
| 129 | } |
| 130 | fuInt GetInterval()const LNOEXCEPT { return m_Interval; } |
| 131 | BlendMode GetBlendMode()const LNOEXCEPT { return m_BlendMode; } |
| 132 | void SetBlendMode(BlendMode m)LNOEXCEPT { m_BlendMode = m; } |
nothing calls this directly
no outgoing calls
no test coverage detected