mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-23 02:55:38 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#include "../../../../../Minecraft.World/Header Files/stdafx.h"
|
||||
#include "../Tutorial.h"
|
||||
#include "FullTutorialActiveTask.h"
|
||||
|
||||
FullTutorialActiveTask::FullTutorialActiveTask(
|
||||
Tutorial* tutorial,
|
||||
eTutorial_CompletionAction completeAction /*= e_Tutorial_Completion_None*/)
|
||||
: TutorialTask(tutorial, -1, false, nullptr, false, false, false) {
|
||||
m_completeAction = completeAction;
|
||||
}
|
||||
|
||||
bool FullTutorialActiveTask::isCompleted() { return bHasBeenActivated; }
|
||||
|
||||
eTutorial_CompletionAction FullTutorialActiveTask::getCompletionAction() {
|
||||
if (tutorial->m_fullTutorialComplete) {
|
||||
return m_completeAction;
|
||||
} else {
|
||||
return e_Tutorial_Completion_None;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user