1#pragma once
2
3#include "Library/Layout/LayoutActor.h"
4
5namespace al {
6class LayoutInitInfo;
7}
8
9class FooterParts : public al::LayoutActor {
10public:
11 FooterParts(al::LayoutActor* parentLayout, const al::LayoutInitInfo& info,
12 const char16* footerText, const char* textPane, const char* partPane);
13
14 void changeText(const char16* text);
15 void changeTextFade(const char16* text);
16 bool tryChangeTextFade(const char16* text);
17
18 void exeWait();
19 void exeFadeOut();
20 void exeFadeIn();
21
22private:
23 const char* mTextPane;
24 const char16* mText;
25};
26