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