- Afegit modul de sequencia (història).

- Reemplaçades músiques per MIDIs
This commit is contained in:
2019-12-13 17:36:59 +01:00
parent 60af56270f
commit 6ee8830244
12 changed files with 306 additions and 31 deletions

22
modulesequence.h Normal file
View File

@@ -0,0 +1,22 @@
#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);
};