mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-22 23:35:33 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
// using namespace std;
|
||||
|
||||
#include "TutorialTask.h"
|
||||
|
||||
class MobEffect;
|
||||
|
||||
class EffectChangedTask : public TutorialTask {
|
||||
private:
|
||||
MobEffect* m_effect;
|
||||
bool m_apply;
|
||||
|
||||
public:
|
||||
EffectChangedTask(Tutorial* tutorial, int descriptionId, MobEffect* effect,
|
||||
bool apply = true, bool enablePreCompletion = true,
|
||||
bool bShowMinimumTime = false, bool bAllowFade = true,
|
||||
bool bTaskReminders = true);
|
||||
virtual bool isCompleted();
|
||||
virtual void onEffectChanged(MobEffect* effect, bool bRemoved = false);
|
||||
};
|
||||
Reference in New Issue
Block a user