| 12 | #include <utils/logger.h> |
| 13 | |
| 14 | UI::SubtitleBox::SubtitleBox(Engine::BaseEngine& e) |
| 15 | : View(e) |
| 16 | { |
| 17 | m_Scaling = 1; |
| 18 | m_growDirection = 0; |
| 19 | m_ScrollArea = 0; |
| 20 | m_BackgroundTexture = e.getEngineTextureAlloc().loadTextureVDF("DLG_CHOICE.TGA"); |
| 21 | |
| 22 | setTranslation(Math::float2(0.25f, 0.0025f)); |
| 23 | } |
| 24 | |
| 25 | UI::SubtitleBox::~SubtitleBox() |
| 26 | { |
nothing calls this directly
no test coverage detected