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

15 lines
276 B
C++

#pragma once
#include "LookAtPlayerGoal.h"
class Villager;
class LookAtTradingPlayerGoal : public LookAtPlayerGoal {
private:
Villager* villager; // This is the owner of this goal
public:
LookAtTradingPlayerGoal(Villager* villager);
virtual bool canUse();
};