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