Files
pepe/modulesequence.h

19 lines
300 B
C++

#pragma once
class ModuleSequence {
public:
ModuleSequence();
~ModuleSequence(void);
int Go();
private:
void FadeIn();
void FadeOut();
void ShowText(int x, int y, int color, int speed, const char* text1, const char* text2 = nullptr, const char* text3 = nullptr);
void Wait(int time);
};