mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-25 20:28:12 +05:00
December 2014 files
This commit is contained in:
30
Minecraft.Client/Common/Tutorial/RideEntityTask.cpp
Normal file
30
Minecraft.Client/Common/Tutorial/RideEntityTask.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
#include "stdafx.h"
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "Minecraft.h"
|
||||
#include "Tutorial.h"
|
||||
|
||||
#include "..\Minecraft.World\EntityHorse.h"
|
||||
|
||||
#include "RideEntityTask.h"
|
||||
|
||||
RideEntityTask::RideEntityTask(const int eType, Tutorial *tutorial, int descriptionId,
|
||||
bool enablePreCompletion, 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(shared_ptr<Entity> entity)
|
||||
{
|
||||
if (entity->instanceof((eINSTANCEOF) m_eType))
|
||||
{
|
||||
bIsCompleted = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user