* Sets up a new empty surface set for frames of the specified size. * @param width Frame width in pixels. * @param height Frame height in pixels. */
| 31 | * @param height Frame height in pixels. |
| 32 | */ |
| 33 | SurfaceSet::SurfaceSet(int width, int height) : _width(width), _height(height), _frames() |
| 34 | { |
| 35 | |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Performs a deep copy of an existing surface set. |
nothing calls this directly
no outgoing calls
no test coverage detected