mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 06:25:16 +00:00
GUI: prepare for intro/tutorial
This commit is contained in:
parent
fd58fae25c
commit
10e4c2106a
1 changed files with 17 additions and 0 deletions
|
@ -664,6 +664,12 @@ enum FurnaceGUIChanOscRef {
|
|||
GUI_OSCREF_MAX
|
||||
};
|
||||
|
||||
enum FurnaceGUITutorials {
|
||||
GUI_TUTORIAL_OVERVIEW=0,
|
||||
|
||||
GUI_TUTORIAL_MAX
|
||||
};
|
||||
|
||||
enum PasteMode {
|
||||
GUI_PASTE_MODE_NORMAL=0,
|
||||
GUI_PASTE_MODE_MIX_FG,
|
||||
|
@ -1461,6 +1467,17 @@ class FurnaceGUI {
|
|||
emptyLabel2("..") {}
|
||||
} settings;
|
||||
|
||||
struct Tutorial {
|
||||
int userComesFrom;
|
||||
bool introPlayed;
|
||||
bool taken[GUI_TUTORIAL_MAX];
|
||||
Tutorial():
|
||||
userComesFrom(0),
|
||||
introPlayed(0) {
|
||||
memset(taken,0,GUI_TUTORIAL_MAX*sizeof(bool));
|
||||
}
|
||||
} tutorial;
|
||||
|
||||
char finalLayoutPath[4096];
|
||||
|
||||
DivInstrument* prevInsData;
|
||||
|
|
Loading…
Reference in a new issue