| 13 | TileAtlas::TileAtlas() { sourceRectangles = NULL; } |
| 14 | |
| 15 | TileAtlas::~TileAtlas() |
| 16 | { |
| 17 | if (sourceRectangles != NULL) |
| 18 | delete[] sourceRectangles; |
| 19 | } |
| 20 | |
| 21 | void TileAtlas::initialize(unsigned int* ptex, int frames_wide, int frames_high, |
| 22 | int frame_width, int frame_height) |
nothing calls this directly
no outgoing calls
no test coverage detected