mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 15:43:37 +00:00
27 lines
991 B
C++
27 lines
991 B
C++
#include "Minecraft.World/Header Files/stdafx.h"
|
|
|
|
#include <string>
|
|
|
|
#include "../../../../net/minecraft/client/Minecraft.h"
|
|
#include "../Tutorial.h"
|
|
|
|
#include "Minecraft.World/net/minecraft/world/entity/animal/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;
|
|
}
|
|
} |