the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 16 lines 196 B view raw
1#pragma once 2 3#include "Goal.h" 4 5class RestrictSunGoal : public Goal 6{ 7private: 8 PathfinderMob *mob; 9 10public: 11 RestrictSunGoal(PathfinderMob *mob); 12 13 bool canUse(); 14 void start(); 15 void stop(); 16};