mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-20 10:13:51 +00:00
Initial commit
This commit is contained in:
parent
def8cb4153
commit
b691c43c44
19437 changed files with 4363922 additions and 0 deletions
21
Minecraft.Client/Common/Tutorial/FullTutorial.h
Normal file
21
Minecraft.Client/Common/Tutorial/FullTutorial.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#pragma once
|
||||
#include "Tutorial.h"
|
||||
|
||||
#define FULL_TUTORIAL_PROGRESS_2_X_2_Crafting 1
|
||||
#define FULL_TUTORIAL_PROGRESS_3_X_3_Crafting 2
|
||||
#define FULL_TUTORIAL_PROGRESS_CRAFT_FURNACE 4
|
||||
#define FULL_TUTORIAL_PROGRESS_USE_FURNACE 8
|
||||
#define EXTENDED_TUTORIAL_PROGRESS_USE_BREWING_STAND 16
|
||||
|
||||
class FullTutorial : public Tutorial
|
||||
{
|
||||
private:
|
||||
bool m_isTrial;
|
||||
char m_progressFlags;
|
||||
bool m_completedStates[e_Tutorial_State_Max];
|
||||
public:
|
||||
FullTutorial(int iPad, bool isTrial = false);
|
||||
|
||||
virtual bool isStateCompleted( eTutorial_State state );
|
||||
virtual void setStateCompleted( eTutorial_State state );
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue