23 lines
326 B
C++
23 lines
326 B
C++
#pragma once
|
|
|
|
#include "info.h"
|
|
|
|
class ModuleSequence {
|
|
|
|
public:
|
|
|
|
ModuleSequence(Info* info);
|
|
~ModuleSequence(void);
|
|
|
|
int Go();
|
|
|
|
private:
|
|
|
|
Info * info;
|
|
|
|
void FadeIn();
|
|
void FadeOut();
|
|
void ShowText(int x, int y, int color, int speed, char* text1, char* text2 = nullptr, char* text3 = nullptr);
|
|
void Wait(int time);
|
|
};
|