the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 16 lines 266 B view raw
1#pragma once 2 3#include "LookAtPlayerGoal.h" 4 5class Villager; 6 7class LookAtTradingPlayerGoal : public LookAtPlayerGoal 8{ 9private: 10 Villager *villager; // This is the owner of this goal 11 12public: 13 LookAtTradingPlayerGoal(Villager *villager); 14 15 virtual bool canUse(); 16};