the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 19 lines 279 B view raw
1#pragma once 2 3#include "Goal.h" 4 5class RandomLookAroundGoal : public Goal 6{ 7private: 8 Mob *mob; 9 double relX, relZ; 10 int lookTime; 11 12public: 13 RandomLookAroundGoal(Mob *mob); 14 15 virtual bool canUse(); 16 virtual bool canContinueToUse(); 17 virtual void start(); 18 virtual void tick(); 19};