4jcraft/targets/minecraft/world/entity/ai/goal/SitGoal.h
2026-04-01 13:27:58 -05:00

19 lines
275 B
C++

#pragma once
#include "Goal.h"
class TamableAnimal;
class SitGoal : public Goal {
private:
TamableAnimal* mob;
bool _wantToSit;
public:
SitGoal(TamableAnimal* mob);
bool canUse();
void start();
void stop();
void wantToSit(bool _wantToSit);
};