| 12 | #include "types.h" |
| 13 | |
| 14 | J2DTextBox::J2DTextBox() |
| 15 | : J2DPane() |
| 16 | , mFont(nullptr) |
| 17 | , mCharColor() |
| 18 | , mGradientColor() |
| 19 | , mStringPtr(nullptr) |
| 20 | , mWhite() |
| 21 | , mBlack() |
| 22 | { |
| 23 | initiate(nullptr, nullptr, 0, J2DHBIND_Left, J2DVBIND_Top); |
| 24 | } |
| 25 | |
| 26 | J2DTextBox::J2DTextBox(J2DPane* parent, JSURandomInputStream* input, JKRArchive* archive) |
| 27 | : J2DPane() |
nothing calls this directly
no test coverage detected