1#pragma once
2
3#include "Library/Layout/LayoutActor.h"
4
5class HardIconParts : public al::LayoutActor {
6public:
7 HardIconParts(const char* name);
8
9 bool isHide() const;
10 bool isWait() const;
11 void startHide();
12 void startAppear();
13 void startWait();
14 void startEnd();
15 void exeHide();
16 void exeAppear();
17 void exeWait();
18 void exePageNext();
19 void exePageEnd();
20 void exeEnd();
21};
22