4jcraft/Minecraft.World/AI/Goals/LookAtTradingPlayerGoal.h
2026-03-13 17:06:56 -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();
};