feat: init

This commit is contained in:
dxfiscool
2026-03-08 10:09:54 +01:00
commit 25809b8455
18807 changed files with 3944357 additions and 0 deletions
@@ -0,0 +1,25 @@
#pragma once
using namespace std;
#include "Tutorial.h"
#include "TutorialTask.h"
class ProgressFlagTask : public TutorialTask
{
public:
enum EProgressFlagType
{
e_Progress_Set_Flag,
e_Progress_Flag_On,
};
private:
char *flags; // Not a member of this object
char m_mask;
EProgressFlagType m_type;
public:
ProgressFlagTask(char *flags, char mask, EProgressFlagType type, Tutorial *tutorial ) :
TutorialTask(tutorial, -1, false, NULL ),
flags( flags ), m_mask( mask ), m_type( type )
{}
virtual bool isCompleted();
};