Files
LegacyMultiplayerProject/Minecraft.World/RandomStrollGoal.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

20 lines
318 B
C++

#pragma once
#include "Goal.h"
class PathfinderMob;
class RandomStrollGoal : public Goal
{
private:
PathfinderMob *mob;
double wantedX, wantedY, wantedZ;
float speed;
public:
RandomStrollGoal(PathfinderMob *mob, float speed);
virtual bool canUse();
virtual bool canContinueToUse();
virtual void start();
};