Skip to content

Commit 615bf7f

Browse files
authored
DialogLayer default ctor (#1210)
1 parent 40bc406 commit 615bf7f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

bindings/2.2074/GeometryDash.bro

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5795,6 +5795,22 @@ class DialogDelegate {
57955795
[[link(android)]]
57965796
class DialogLayer : cocos2d::CCLayerColor, TextAreaDelegate {
57975797
// virtual ~DialogLayer();
5798+
DialogLayer() {
5799+
m_animateTime = 0.f;
5800+
m_mainLayer = nullptr;
5801+
m_characterLabel = nullptr;
5802+
m_textArea = nullptr;
5803+
m_characterSprite = nullptr;
5804+
m_dialogObjects = nullptr;
5805+
m_touchID = -1;
5806+
m_navButtonSprite = nullptr;
5807+
m_animating = false;
5808+
m_skippable = false;
5809+
m_delegate = nullptr;
5810+
m_handleTap = false;
5811+
m_animationType = DialogAnimationType::FromCenter;
5812+
m_noRemove = false;
5813+
}
57985814

57995815
static DialogLayer* create(DialogObject* object, int background) = win inline, m1 0x33f91c, imac 0x3b4270, ios 0x8a89c {
58005816
return DialogLayer::createDialogLayer(object, nullptr, background);

0 commit comments

Comments
 (0)