| 11 | { |
| 12 | |
| 13 | Ticker::Ticker(sp<BitmapFont> font) |
| 14 | : Control(), animating(false), animTimer(0), displayTimer(0), font(font), |
| 15 | TextHAlign(HorizontalAlignment::Left), TextVAlign(VerticalAlignment::Top) |
| 16 | { |
| 17 | if (font) |
| 18 | { |
| 19 | palette = font->getPalette(); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | Ticker::~Ticker() = default; |
| 24 |
nothing calls this directly
no test coverage detected