Primer commit
This commit is contained in:
25
modulesequence.h
Executable file
25
modulesequence.h
Executable file
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
#include "info.h"
|
||||
|
||||
class ModuleSequence {
|
||||
|
||||
public:
|
||||
|
||||
ModuleSequence( Info* info );
|
||||
~ModuleSequence(void);
|
||||
|
||||
int Go();
|
||||
|
||||
private:
|
||||
|
||||
void doIntro();
|
||||
void doMenu();
|
||||
void doSlides();
|
||||
void doBanner();
|
||||
void doSecreta();
|
||||
void doCredits();
|
||||
|
||||
Info* info;
|
||||
int contador;
|
||||
};
|
||||
Reference in New Issue
Block a user