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};