the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "Goal.h"
4
5class PathfinderMob;
6
7class RandomStrollGoal : public Goal
8{
9private:
10 PathfinderMob *mob;
11 double wantedX, wantedY, wantedZ;
12 double speedModifier;
13
14public:
15 RandomStrollGoal(PathfinderMob *mob, double speedModifier);
16
17 virtual bool canUse();
18 virtual bool canContinueToUse();
19 virtual void start();
20};