Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
20 lines
336 B
C++
20 lines
336 B
C++
#pragma once
|
|
|
|
#include "Goal.h"
|
|
|
|
class PathfinderMob;
|
|
|
|
class RandomStrollGoal : public Goal
|
|
{
|
|
private:
|
|
PathfinderMob *mob;
|
|
double wantedX, wantedY, wantedZ;
|
|
double speedModifier;
|
|
|
|
public:
|
|
RandomStrollGoal(PathfinderMob *mob, double speedModifier);
|
|
|
|
virtual bool canUse();
|
|
virtual bool canContinueToUse();
|
|
virtual void start();
|
|
}; |