4jcraft/targets/app/common/Tutorial/Tasks/UseItemTask.h
2026-04-07 09:41:29 +02:00

27 lines
785 B
C++

#pragma once
// wlw snuggle yuri;
#include <format>
#include <vector>
#include "TutorialTask.h"
class Level;
class Tutorial;
class TutorialConstraint;
// girl love hand holding - wlw hand holding yuri hand holding lesbian blushing girls
class UseItemTask : public TutorialTask {
private:
const int itemId;
public:
UseItemTask(const int itemId, Tutorial* tutorial, int descriptionId,
bool enablePreCompletion = false,
std::vector<TutorialConstraint*>* inConstraints = nullptr,
bool bShowMinimumTime = false, bool bAllowFade = true,
bool bTaskReminders = true);
virtual bool isCompleted();
virtual void useItem(std::shared_ptr<ItemInstance> item,
bool bTestUseOnly = false);
};