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