* Creates and returns a particular frame in the surface set. * @param i Frame number in the set. * @return Pointer to the respective surface. */
| 227 | * @return Pointer to the respective surface. |
| 228 | */ |
| 229 | Surface *SurfaceSet::addFrame(int i) |
| 230 | { |
| 231 | _frames[i] = new Surface(_width, _height); |
| 232 | return _frames[i]; |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * Returns the full width of a frame in the set. |
no outgoing calls
no test coverage detected