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

18 lines
292 B
C++

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