Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
279 B · 19 lines
C
at master
12345678910111213141516171819#pragma once
#include "Goal.h"
class RandomLookAroundGoal : public Goal{private: Mob *mob; double relX, relZ; int lookTime;
public: RandomLookAroundGoal(Mob *mob);
virtual bool canUse(); virtual bool canContinueToUse(); virtual void start(); virtual void tick();};