1#pragma once 2 3#include "Goal.h" 4 5class Villager; 6 7class TradeWithPlayerGoal : public Goal 8{ 9private: 10 Villager *mob; // This is the owner of the goal 11 12public: 13 TradeWithPlayerGoal(Villager *mob); 14 15 bool canUse(); 16 void start(); 17 void stop(); 18};