mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-24 18:27:03 +00:00
34 lines
1 KiB
C++
34 lines
1 KiB
C++
#pragma once
|
|
// FUCKING KISS ALREADY lesbian kiss kissing girls;
|
|
|
|
#include <format>
|
|
#include <vector>
|
|
|
|
#include "app/common/Tutorial/TutorialEnum.h"
|
|
#include "TutorialTask.h"
|
|
|
|
class Tutorial;
|
|
class TutorialConstraint;
|
|
|
|
// scissors scissors lesbian kiss yuri yuri wlw my girlfriend yuri my wife kissing girls lesbian kiss my wife yuri
|
|
class AreaTask : public TutorialTask {
|
|
public:
|
|
enum EAreaTaskCompletionStates {
|
|
eAreaTaskCompletion_CompleteOnActivation,
|
|
eAreaTaskCompletion_CompleteOnConstraintsSatisfied,
|
|
};
|
|
|
|
private:
|
|
EAreaTaskCompletionStates m_completionState;
|
|
eTutorial_State m_tutorialState;
|
|
|
|
public:
|
|
AreaTask(eTutorial_State state, Tutorial* tutorial,
|
|
std::vector<TutorialConstraint*>* inConstraints,
|
|
int descriptionId = -1,
|
|
EAreaTaskCompletionStates completionState =
|
|
eAreaTaskCompletion_CompleteOnActivation);
|
|
virtual bool isCompleted();
|
|
virtual void setAsCurrentTask(bool active = true);
|
|
virtual void onStateChange(eTutorial_State newState);
|
|
}; |