restructure codebase according to vcproj filters

This commit is contained in:
Tropical
2026-03-30 09:50:58 -05:00
parent d5cf90c713
commit 451682693e
3015 changed files with 46858 additions and 54635 deletions

View File

@@ -0,0 +1,27 @@
#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, nullptr),
flags(flags),
m_mask(mask),
m_type(type) {}
virtual bool isCompleted();
};