| 12 | using namespace UI; |
| 13 | |
| 14 | DialogBox::DialogBox(Engine::BaseEngine& e) |
| 15 | : View(e) |
| 16 | { |
| 17 | m_ScrollArea = 0; |
| 18 | m_CurrentlySelected = 0; |
| 19 | m_BackgroundTexture = e.getEngineTextureAlloc().loadTextureVDF("DLG_CHOICE.TGA"); |
| 20 | |
| 21 | setSize(Math::float2(0.75f, 1.0f)); |
| 22 | setTranslation(Math::float2(0.125f, 0)); |
| 23 | } |
| 24 | |
| 25 | DialogBox::~DialogBox() |
| 26 | { |
nothing calls this directly
no test coverage detected