mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-23 19:14:54 +00:00
TU19: merge Minecraft.Client/Platform/Common/Tutorial
This commit is contained in:
27
Minecraft.Client/Platform/Common/Tutorial/RideEntityTask.cpp
Normal file
27
Minecraft.Client/Platform/Common/Tutorial/RideEntityTask.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
#include "../../stdafx.h"
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "../../../Minecraft.h"
|
||||
#include "Tutorial.h"
|
||||
|
||||
#include "../../../../Minecraft.World/Entities/Mobs/EntityHorse.h"
|
||||
|
||||
#include "RideEntityTask.h"
|
||||
|
||||
RideEntityTask::RideEntityTask(const int eType, Tutorial* tutorial,
|
||||
int descriptionId, bool enablePreCompletion,
|
||||
std::vector<TutorialConstraint*>* inConstraints,
|
||||
bool bShowMinimumTime, bool bAllowFade,
|
||||
bool bTaskReminders)
|
||||
: TutorialTask(tutorial, descriptionId, enablePreCompletion, inConstraints,
|
||||
bShowMinimumTime, bAllowFade, bTaskReminders),
|
||||
m_eType(eType) {}
|
||||
|
||||
bool RideEntityTask::isCompleted() { return bIsCompleted; }
|
||||
|
||||
void RideEntityTask::onRideEntity(std::shared_ptr<Entity> entity) {
|
||||
if (entity->instanceof((eINSTANCEOF)m_eType)) {
|
||||
bIsCompleted = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user