| 26 | CAnimationManager g_AnimationManager; |
| 27 | |
| 28 | void *LoadSpritePixels(int width, int height, uint16_t *pixels) |
| 29 | { |
| 30 | auto spr = new CSprite(); |
| 31 | spr->LoadSprite16(width, height, pixels); |
| 32 | return spr; |
| 33 | } |
| 34 | |
| 35 | void DeleteSprite(void *ptr) |
| 36 | { |
nothing calls this directly
no test coverage detected