mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-11 23:54:09 +00:00
refactor: move Common to Platform/Common
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
//using namespace std;
|
||||
|
||||
#include "TutorialTask.h"
|
||||
|
||||
class Level;
|
||||
|
||||
class CompleteUsingItemTask : public TutorialTask
|
||||
{
|
||||
private:
|
||||
int *m_iValidItemsA;
|
||||
int m_iValidItemsCount;
|
||||
bool completed;
|
||||
|
||||
public:
|
||||
CompleteUsingItemTask(Tutorial *tutorial, int descriptionId, int itemIds[], unsigned int itemIdsLength, bool enablePreCompletion = false);
|
||||
virtual ~CompleteUsingItemTask();
|
||||
virtual bool isCompleted();
|
||||
virtual void completeUsingItem(std::shared_ptr<ItemInstance> item);
|
||||
};
|
||||
Reference in New Issue
Block a user