December 2014 files
This commit is contained in:
21
Minecraft.World/RunAroundLikeCrazyGoal.h
Normal file
21
Minecraft.World/RunAroundLikeCrazyGoal.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include "Goal.h"
|
||||
|
||||
class EntityHorse;
|
||||
|
||||
class RunAroundLikeCrazyGoal : public Goal
|
||||
{
|
||||
private:
|
||||
EntityHorse *horse; // Owner
|
||||
double speedModifier;
|
||||
double posX, posY, posZ;
|
||||
|
||||
public:
|
||||
RunAroundLikeCrazyGoal(EntityHorse *mob, double speedModifier);
|
||||
|
||||
bool canUse();
|
||||
void start();
|
||||
bool canContinueToUse();
|
||||
void tick();
|
||||
};
|
||||
Reference in New Issue
Block a user